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 7726fe9 commit f1bc5c8Copy full SHA for f1bc5c8
.github/workflows/lint-404s.yml
@@ -36,14 +36,13 @@ jobs:
36
${{ github.workspace }}/node_modules
37
${{ github.workspace }}/.next/cache
38
${{ github.workspace }}/.eslintcache
39
- key: node-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
+ key: node-${{ runner.os }}-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('**/yarn.lock') }}
40
restore-keys: |
41
- node-${{ runner.os }}-
+ node-${{ runner.os }}-${{ steps.setup-node.outputs.node-version }}-
42
43
- run: yarn install --frozen-lockfile
44
- if: steps.cache.outputs.cache-hit != 'true'
45
46
- - run: yarn build
+ - run: yarn next build
47
if: steps.filter.outputs.docs == 'true'
48
env:
49
SENTRY_DSN: https://[email protected]/0
0 commit comments