Skip to content

Increase timeout

Increase timeout #119

Workflow file for this run

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