We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a41eb2 commit dce84bfCopy full SHA for dce84bf
1 file changed
.github/workflows/nextjs.yml
@@ -49,10 +49,13 @@ jobs:
49
exit 1
50
fi
51
- name: Setup Node
52
- uses: actions/setup-node@v4
53
- with:
54
- node-version: "20"
55
- cache: ${{ steps.detect-package-manager.outputs.manager }}
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 20
+ cache: 'npm'
56
+ cache-dependency-path: package-lock.json
57
+ - run: npm ci
58
+ - run: npm run build
59
- name: Setup Pages
60
uses: actions/configure-pages@v5
61
with:
0 commit comments