Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:
cancel-in-progress: true

jobs:
check:
checks:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
Expand All @@ -24,7 +24,7 @@ jobs:
node-version-file: 'package.json'
- run: npm ci
- name: Run checks
run: npm run check
run: npm run checks

test:
runs-on: ubuntu-latest
Expand All @@ -50,7 +50,7 @@ jobs:
run: npm run test

build:
needs: test
needs: [checks, test]
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@
},
"scripts": {
"docs:generate": "tsdoc --src=src/contexts/*,src/hooks/* --dest=docs/API.md --noemoji --types",
"check:eslint": "eslint --cache .",
"check:format": "prettier --cache --check .",
"check:types": "tsc",
"check": "npm-run-all --parallel --continue-on-error --print-label --aggregate-output check:*",
"checks:eslint": "eslint --cache .",
"checks:format": "prettier --cache --check .",
"checks:types": "tsc",
"checks": "npm-run-all --parallel --continue-on-error --print-label --aggregate-output checks:*",
"prepack": "tshy",
"prepare": "husky",
"test": "vitest run"
Expand Down
Loading