Skip to content

Commit

Permalink
Remove test folder and test ci command
Browse files Browse the repository at this point in the history
  • Loading branch information
kwokieee committed Sep 6, 2023
1 parent 045a54d commit bf792ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-frontend-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
commands: ['format:ci', 'lint:ci', build, test]
commands: ['format:ci', 'lint:ci', build]

steps:
- name: Check out repository code
Expand Down
4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"format:ci": "prettier --list-different \"{src,test}/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"format:ci": "prettier --list-different \"src/**/*.ts\"",
"prepare": "cd .. && husky install frontend/.husky",
"preview": "vite preview",
"test": "vitest"
Expand Down

0 comments on commit bf792ab

Please sign in to comment.