Update to node version 20 #411
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
# `dist/index.js` is a special file in Actions. | |
# When you reference an action with `uses:` in a workflow, | |
# `index.js` is the code that will run. | |
# For our project, we generate this file through a build process from other source files. | |
# We need to make sure the checked-in `index.js` actually matches what we expect it to be. | |
name: Check update compatibility | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
jobs: | |
check-dist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Node.js version 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 # if possible should use `lts/*` | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build lib | |
run: npm run build | |
- name: Check Update compatiility with `dist/index.js` | |
# Ensure no changes with `dist/index.js`. | |
run: | | |
git add -u . # compare after applying git EOL normalization | |
git diff --cached --exit-code --stat \ | |
|| (echo "##[error] found changed files after build in CI." \ | |
"Please 'yarn run build' locally and check in all changes" \ | |
&& git diff --cached \ | |
&& exit 1) | |
test: | |
runs-on: ubuntu-latest | |
needs: check-dist | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: 'main' | |
- name: nanodu failing packages options | |
uses: ./ | |
continue-on-error: true | |
with: | |
stablePackages: true | |
previewPackages: true | |
- name: nanodu failing repos and solutions options | |
uses: ./ | |
continue-on-error: true | |
with: | |
solutionsToCheck: '' | |
reposToUpdate: '' |