Upgrade Node.js to v20 #93
Workflow file for this run
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' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install packages | |
run: | | |
npm install | |
- name: Rebuild | |
run: | | |
npm run all | |
- name: Ensure dist is updated | |
run: | | |
git diff --exit-code | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm ci | |
- run: npm test | |
# make sure the action works on a clean machine without building | |
smoketest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
version: ^0.17 | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --check ./test | |
smoketest_latest_version_provided: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
version: latest | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --check ./test |