Skip to content

Commit

Permalink
test: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Sep 25, 2023
1 parent c7d7c10 commit 7a10328
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
- name: Lint
run: npm run lint

- name: Check format
run: npm run check-format

- name: Check types
run: npm run check-types

build:
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"build": "cross-env NODE_ENV=production lerna run build",
"build-docs": "cross-env typedoc",
"format": "prettier --write .",
"lint": "prettier --check . && eslint . && tsc",
"check-format": "prettier --check .",
"lint": "eslint .",
"check-types": "tsc --noEmit",
"test": "vitest",
"e2e": "lerna run e2e",
"release": "npm run build && lerna publish --conventional-commits --create-release=github",
Expand Down
2 changes: 2 additions & 0 deletions packages/core/src/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ describe("#createConfig", () => {
repository: null,
owner: null,
prHeadCommit: null,
referenceBranch: null,
referenceCommit: null,
});
});

Expand Down

0 comments on commit 7a10328

Please sign in to comment.