We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 087a493 commit 577b330Copy full SHA for 577b330
.github/workflows/frontend.yml
@@ -15,17 +15,20 @@ jobs:
15
16
strategy:
17
matrix:
18
- node-version: [18.x, 20.x, 22.x]
19
- # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
+ node-version: [22.x]
+
20
+ defaults:
21
+ run:
22
+ working-directory: client
23
24
steps:
25
- uses: actions/checkout@v4
26
- name: Use Node.js ${{ matrix.node-version }}
- working-directory: frontend
27
uses: actions/setup-node@v4
28
with:
29
node-version: ${{ matrix.node-version }}
- cache: "npm"
30
+ cache: "pnpm"
31
+ cache-dependency-path: "frontend/pnpm-lock.yaml"
32
- run: npm run build
33
working-directory: frontend
34
- name: Setup Pages
0 commit comments