This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
chore: removed .cache from gatsby action #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Gatsby site to Pages | |
on: | |
push: | |
branches: ["master"] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
cache: yarn | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@v4 | |
with: | |
static_site_generator: gatsby | |
- name: Cache node_modules and browsers | |
id: cache-dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
~/.cache/ms-playwright | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
run: yarn | |
- name: Install Playwright Browsers | |
run: yarn playwright install | |
- name: Build with Gatsby | |
env: | |
PREFIX_PATHS: "true" | |
SITE_URL: ${{ vars.SITE_URL }} | |
run: yarn build | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: public-folder | |
path: ./public | |
test: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
cache: yarn | |
- name: Restore Cache node_modules and browsers | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
~/.cache/ms-playwright | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
- name: Download build artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: public-folder | |
path: ./public | |
- name: Run Playwright Tests | |
run: yarn test:ci | |
- name: Upload Coverage Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
path: ./coverage | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: [build, test] | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |