build(deps): lock file maintenance #774
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: Test | |
"on": | |
push: | |
branches: | |
- main | |
- next | |
- beta | |
- dependabot/npm_and_yarn/** | |
- 16.x | |
- 17.x | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
test_matrix: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node_version: | |
- 18 | |
- 20 | |
steps: | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
- name: Test with Node.js ${{ matrix.node_version }} | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: ${{ matrix.node_version }} | |
- run: npm ci | |
- run: npm run start-fixtures-server & | |
- run: sleep 3 | |
- run: npm run test --ignore-scripts | |
- run: npm run test:typescript | |
test: | |
runs-on: ubuntu-latest | |
needs: test_matrix | |
steps: | |
- run: exit 1 | |
if: ${{ needs.test_matrix.result != 'success' }} | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
- run: npm ci | |
- run: npm run lint | |
if: ${{ always() }} |