test: update node versions in tests (#1144) #104
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
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: | |
push: | |
branches: | |
- main | |
- beta | |
# Dont run if it's just markdown or doc files | |
paths-ignore: | |
# UNCOMMENT THIS AFTER | |
# - "**.md" | |
- "docs/**" | |
- "demos/**" | |
- "scripts/**" | |
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 |