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 6b01cb5 commit a970640Copy full SHA for a970640
.github/workflows/node.js.yml
@@ -24,11 +24,15 @@ jobs:
24
uses: actions/setup-node@v1
25
with:
26
node-version: ${{ matrix.node-version }}
27
- - run: yarn
+ - name: Fetch yarn for backend
28
+ run: yarn
29
working-directory: ./backend
- - run: yarn tsc --noEmit
30
+ - name: Build backend
31
+ run: yarn tsc --noEmit
32
- working-directory: ./frontend
33
- - run: yarn build
+ - name: Fetch yarn for frontend
34
35
+ working-directory: ./
36
+ - name: Build frontend
37
+ run: yarn build
38
working-directory: ./frontend
0 commit comments