Bump cross-spawn from 7.0.3 to 7.0.6 #124
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: CI | |
on: ["push", "pull_request"] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: "./.tool-versions" | |
# We need to add --legacy-peer-deps because | |
# eslint-plugin-tsdoc | |
# eslint-plugin-react-native | |
# eslint-plugin-react-hooks | |
# They do not officially support eslint 9 | |
# We make them compatible with eslint 9 with @eslint/compat | |
- run: npm ci --legacy-peer-deps | |
- run: make print-all-rules | |
- run: make check-all-rules-are-considered | |
- run: npm run format | |
- run: npm run test |