We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b71dbc9 commit 40d9a71Copy full SHA for 40d9a71
2 files changed
.github/workflows/run-tests.yml
@@ -37,5 +37,7 @@ jobs:
37
run: docker exec finishline psql -U postgres -c "CREATE DATABASE nerpm;"
38
- name: Install modules
39
run: yarn install && yarn prisma:generate && yarn prisma:migrate:prod
40
+ - name: Build shared package
41
+ run: yarn build:shared
42
- name: Run tests
43
run: yarn test:backend; yarn test:frontend
.github/workflows/tsc-check.yml
@@ -28,5 +28,8 @@ jobs:
28
- name: Install dependencies
29
run: yarn install && yarn prisma:generate
30
31
32
33
+
34
- name: Run tsc check
35
run: npm run tsc-check # You need to define this script in your package.json
0 commit comments