Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
eegli committed Mar 1, 2024
1 parent ff49af9 commit b1bbf9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,8 @@ jobs:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install --immutable
- name: Run unit test
run: yarn test:unit
- name: Run type test
run: yarn test:types
- name: Run unit and type test
run: yarn test
- name: Run integration tests
if: matrix.node == '20'
run: yarn test:integration
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"release": "yarn build:release && changeset publish",
"test": "yarn test:unit && yarn test:types",
"test": "yarn test:unit --coverage && yarn test:types",
"test:unit": "jest --selectProjects unit",
"test:types": "tstyche",
"test:integration": "yarn build && cd test/integration && npm install --omit=dev --ignore-scripts && tsc && npm test",
Expand Down

0 comments on commit b1bbf9a

Please sign in to comment.