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 a72cc04Copy full SHA for a72cc04
.github/workflows/ci.yml
@@ -74,8 +74,25 @@ jobs:
74
- name: Run Tests (Webapp)
75
run: npm test
76
77
+ - name: Restore cache Next.js build
78
+ uses: actions/cache@v3
79
+ with:
80
+ path: webapp/.next
81
+ key: ${{ runner.os }}-nextjs-${{ github.ref_name }}-${{ hashFiles('webapp/yarn.lock') }}
82
+ restore-keys: |
83
+ ${{ runner.os }}-nextjs-${{ github.ref_name }}-
84
+ ${{ runner.os }}-nextjs-
85
+
86
- name: Build Webapp
- run: yarn build
87
+ run: |
88
+ yarn build
89
+ ls -la
90
91
+ - name: Store cache Next.js build
92
93
94
95
96
97
# Merge Blocker: Ensure Both Builds Pass
98
merge_guard:
0 commit comments