We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3839add commit 7049499Copy full SHA for 7049499
.github/workflows/autodeploy.yml
@@ -17,8 +17,10 @@ jobs:
17
with:
18
node-version: 18
19
20
- - name: Run Tests
21
- run: npm test
+ - name: Run frontend tests
+ run: cd course-matrix/frontend && npm install && npm run test
22
+ - name: Run backend tests
23
+ run: cd course-matrix/backend && npm install && npm run test
24
25
deploy:
26
needs: test
0 commit comments