File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 88jobs :
99 build-frontend :
1010 runs-on : ubuntu-latest
11+ working-directory : ./frontend
1112 steps :
1213 - name : Checkout
1314 uses : actions/checkout@v4
1415 - uses : pnpm/action-setup@v4
15- working-directory : ./frontend
1616 name : Install pnpm
1717 with :
1818 version : 8
@@ -24,23 +24,19 @@ jobs:
2424 node-version : 20
2525 cache : " pnpm"
2626 - name : Get pnpm store directory
27- working-directory : ./frontend
2827 shell : bash
2928 run : |
3029 echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
3130 - uses : actions/cache@v4
3231 name : Setup pnpm cache
33- working-directory : ./frontend
3432 with :
3533 path : ${{ env.STORE_PATH }}
3634 key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
3735 restore-keys : |
3836 ${{ runner.os }}-pnpm-store-
3937 - name : Install dependencies
40- working-directory : ./frontend
4138 run : pnpm install
4239 - name : Build frontend
43- working-directory : ./frontend
4440 run : pnpm build
4541
4642 build-backend :
You can’t perform that action at this time.
0 commit comments