Skip to content

Commit

Permalink
Add --legacy-peer-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
louischan-oursky committed Oct 6, 2024
1 parent f3ecf94 commit ffda00f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: "./.tool-versions"
- run: npm ci
# 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
Expand Down

0 comments on commit ffda00f

Please sign in to comment.