File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 pull_request :
88 branches :
99 - master
10+ paths :
11+ - ' frontend/**'
1012 workflow_dispatch :
1113 inputs :
1214 skip-cache :
@@ -31,10 +33,20 @@ jobs:
3133 - name : Checkout repository
3234 uses : actions/checkout@v4
3335
34- - name : Setup node
35- uses : ./.github/actions/setup-node
36+ # - name: Setup node
37+ # uses: ./.github/actions/setup-node
38+ # with:
39+ # NODEJS_VERSION: '22'
40+ - name : Setup Node
41+ uses : actions/setup-node@v4
3642 with :
37- NODEJS_VERSION : ' 22'
43+ node-version : ' 22'
44+ cache : ' npm'
45+ cache-dependency-path : frontend/package-lock.json
46+
47+ - name : Install dependencies
48+ working-directory : frontend
49+ run : npm ci
3850
3951 - name : Compute source hash
4052 id : source-hash
5062 - name : Build app
5163 if : steps.cache-build.outputs.cache-hit != 'true'
5264 # run: yarn workspace @claude-certificate/frontend build
65+ working-directory : frontend
5366 run : npm run build
5467
5568 - name : Upload build artifact
Original file line number Diff line number Diff line change 11import type { NextConfig } from "next" ;
22
33const nextConfig : NextConfig = {
4- /* config options here */
4+ output : 'export' ,
55} ;
66
77export default nextConfig ;
You can’t perform that action at this time.
0 commit comments