-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2231cd
commit edd9465
Showing
2 changed files
with
67 additions
and
1 deletion.
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,66 @@ | ||
name: Build, Test, Release | ||
|
||
# On pushes to master (i.e. merging a PR) | ||
# run all tests, on win, macos, linux, on node 12 & 14 | ||
on: workflow_dispatch | ||
|
||
jobs: | ||
# First, build and test on multiple os's | ||
# and multuple versions of node | ||
build_and_test: | ||
name: Build and Test | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
# PRs will run tests on node 14,16 on ubuntu, macos and windows | ||
# so for the release, we're just running node 16@ubuntu | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
node: [18] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
|
||
- name: Install | ||
run: npm ci | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: Test in Chrome | ||
run: npm run test:chrome:ci | ||
|
||
- name: Test in Node | ||
run: npm run test:node | ||
|
||
- uses: codecov/codecov-action@v1 | ||
with: | ||
directory: ./coverage | ||
|
||
# If the build and test works, run a release | ||
release: | ||
name: Release | ||
needs: [build_and_test] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install | ||
run: npm ci | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: npm run release:dry |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.