Skip to content

Commit 4dea728

Browse files
committed
ci: dummy test
1 parent ff7b283 commit 4dea728

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
- name: Lint
3131
run: pnpm run lint
3232

33-
- name: test
34-
run: pnpm run test
33+
- name: Test
34+
run: pnpm run test:unit
3535

3636
- name: Build
3737
run: pnpm run build

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
3535
"play": "pnpm run -C playground dev",
3636
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
37-
"lint:fix": "yarn run lint --write",
37+
"lint:fix": "pnpm run lint --write",
3838
"test:types": "tsc --build tsconfig.json",
3939
"test:unit": "vitest --coverage",
40-
"test": "echo TODO"
40+
"test": "pnpm run lint && pnpm run test:unit run && pnpm run build"
4141
},
4242
"keywords": [
4343
"vue",

0 commit comments

Comments
 (0)