-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v5.14.0 - boundation, changelog, version bump
- Loading branch information
Showing
10 changed files
with
1,310 additions
and
1,547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: automerge | ||
'on': | ||
- pull_request | ||
jobs: | ||
automerge: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ahmadnassri/action-dependabot-auto-merge@v2 | ||
with: | ||
github-token: ${{ secrets.DEPENDABOT_AUTOMERGE_GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: bevry | ||
'on': | ||
- push | ||
- pull_request | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
node: | ||
- '10' | ||
- '12' | ||
- '14' | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ contains('macos-latest windows-latest', matrix.os) }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install desired Node.js version | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
- run: npm run our:setup | ||
- run: npm run our:compile | ||
- run: npm run our:verify | ||
- name: Install targeted Node.js | ||
if: ${{ matrix.node != 14 }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- run: npm test | ||
publish: | ||
if: ${{ github.event_name == 'push' }} | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install desired Node.js version | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
- run: npm run our:setup | ||
- run: npm run our:compile | ||
- run: npm run our:meta | ||
- name: publish to npm | ||
uses: bevry-actions/[email protected] | ||
with: | ||
npmAuthToken: ${{ secrets.NPM_AUTH_TOKEN }} | ||
npmBranchTag: ':next' | ||
- name: publish to surge | ||
uses: bevry-actions/[email protected] | ||
with: | ||
surgeLogin: ${{ secrets.SURGE_LOGIN }} | ||
surgeToken: ${{ secrets.SURGE_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.