chore(deps): update nx to v20 (major) #2345
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
name: ci | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [14, 16, 18, 19] | |
include: | |
- node: 14 | |
npm-version: ^7 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
# TODO: remove once node 14 is dropped | |
- name: Install npm@${{ matrix.npm-version }} | |
if: matrix.npm-version | |
run: npm install -g npm@${{ matrix.npm-version }} | |
- run: | | |
node --version | |
npm --version | |
- run: npm install | |
- run: npm test | |
- name: Report Coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
verbose: true | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 19 | |
- run: npm install | |
- run: npm run lint | |
# Verify npm package-lock.json files use lockfileVersion 2 | |
verify-package-lock-v2: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
for f in $(git ls-files "**package-lock.json") | |
do | |
lockfileVersion=$(jq ".lockfileVersion" $f) | |
if [ $lockfileVersion -lt 2 ] | |
then | |
>&2 echo "package-lock.json files should have at least lockfileVersion 2, but $f has version $lockfileVersion" | |
exit 1 | |
fi | |
done |