Skip to content

Commit

Permalink
feat(ci/cd): npm run test:ci command
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobuddy committed Nov 21, 2024
1 parent 118cee6 commit 2e6c371
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
- name: Build App
run: npm run build
- name: Run tests
run: npm run test
run: npm run test:ci
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"build": "npx turbo run build",
"dev": "npx turbo run dev",
"test": "npx turbo run test",
"test:ci": "npx turbo run test:ci",
"lint": "npx turbo run lint",
"seed": "cd packages/core/manifest && npm run seed",
"prepare": "husky"
Expand Down
1 change: 1 addition & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"cache": false
},
"test": {},
"test:ci": {},
"lint": {
"outputs": []
}
Expand Down

0 comments on commit 2e6c371

Please sign in to comment.