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 dcc0750 commit f213397Copy full SHA for f213397
.github/workflows/ci.yml
@@ -74,6 +74,15 @@ jobs:
74
- name: Run Tests (Webapp)
75
run: npm test
76
77
+ - name: Cache Next.js build
78
+ uses: actions/cache@v3
79
+ with:
80
+ path: .next/cache
81
+ key: ${{ runner.os }}-nextjs-${{ github.ref }}-${{ github.sha }}
82
+ restore-keys: |
83
+ ${{ runner.os }}-nextjs-${{ github.ref }}-
84
+ ${{ runner.os }}-nextjs
85
+
86
- name: Build Webapp
87
run: yarn build
88
0 commit comments