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 f213397 commit 8199a32Copy full SHA for 8199a32
.github/workflows/ci.yml
@@ -74,7 +74,7 @@ jobs:
74
- name: Run Tests (Webapp)
75
run: npm test
76
77
- - name: Cache Next.js build
+ - name: Restore cache Next.js build
78
uses: actions/cache@v3
79
with:
80
path: .next/cache
@@ -86,6 +86,12 @@ jobs:
86
- name: Build Webapp
87
run: yarn build
88
89
+ - name: Store cache Next.js build
90
+ uses: actions/cache@v3
91
+ with:
92
+ path: .next/cache
93
+ key: ${{ runner.os }}-nextjs-${{ github.ref }}-${{ github.sha }}
94
+
95
# Merge Blocker: Ensure Both Builds Pass
96
merge_guard:
97
name: Ensure All Jobs Passed
0 commit comments