Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/firebase-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,9 @@ jobs:
- name: Install NPM packages
run: npm ci

- name: Gatsby Cache Folder
uses: actions/cache@v3
- uses: jongwooo/gatsby-cache@v1.1.0
with:
key: cache-folder-ubuntu-latest
path: .cache

- name: Gatsby Public Folder
uses: actions/cache@v3
with:
key: public-folder-ubuntu-latest
path: public
key: firebase-deployment-gatsby-ubuntu-latest

- name: Build Gatsby
run: npm run build-ci
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/generate-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ jobs:
- name: Install NPM packages
run: npm ci

- uses: jongwooo/gatsby-cache@v1.1.0
with:
key: generate-preview-gatsby-ubuntu-latest

- name: Build Gatsby
run: npm run build-ci
env:
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,9 @@ jobs:
- name: Install NPM packages
run: npm ci

- name: Gatsby Cache Folder
uses: actions/cache@v3
- uses: jongwooo/gatsby-cache@v1.1.0
with:
key: cache-folder-ubuntu-latest
path: .cache

- name: Gatsby Public Folder
uses: actions/cache@v3
with:
key: public-folder-ubuntu-latest
path: public
key: github-pages-gatsby-ubuntu-latest

- name: Build Gatsby
run: npm run build-ci
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,9 @@ jobs:
- name: Install NPM packages
run: npm ci

- name: Gatsby Cache Folder
uses: actions/cache@v3
- uses: jongwooo/gatsby-cache@v1.1.0
with:
key: cache-folder-${{ matrix.os }}
path: .cache

- name: Gatsby Public Folder
uses: actions/cache@v3
with:
key: public-folder-${{ matrix.os }}
path: public
key: pull-request-gatsby-ubuntu-latest

- name: Build Gatsby
run: npm run build-ci
12 changes: 2 additions & 10 deletions .github/workflows/sync-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,9 @@ jobs:
- name: Lint Markdown files
run: npm run lint:md

- name: Gatsby Cache Folder
uses: actions/cache@v3
- uses: jongwooo/gatsby-cache@v1.1.0
with:
key: cache-folder-ubuntu-latest
path: .cache

- name: Gatsby Public Folder
uses: actions/cache@v3
with:
key: public-folder-ubuntu-latest
path: public
key: sync-api-gatsby-ubuntu-latest

- name: Build Gatsby
run: npm run build-ci
Expand Down