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 b6bc76e commit 068e825Copy full SHA for 068e825
.github/workflows/test-suite.yml
@@ -24,6 +24,17 @@ jobs:
24
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
25
restore-keys: |
26
${{ runner.os }}-yarn-
27
+
28
+ - name: Caching Gatsby
29
+ id: gatsby-cache-build
30
+ uses: actions/cache@v2
31
+ with:
32
+ path: |
33
+ public
34
+ .cache
35
+ key: ${{ runner.os }}-gatsby-build-${{ github.run_id }}
36
+ restore-keys: |
37
+ ${{ runner.os }}-gatsby-build-
38
39
- name: Set Node.js
40
uses: actions/setup-node@master
@@ -37,4 +48,8 @@ jobs:
48
run: yarn run lint
49
50
- name: Build
- run: yarn run build
51
+ run: yarn build --log-pages
52
+ env:
53
+ GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES: true
54
+ CI: true
55
0 commit comments