This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
feat(doc): updated readme #36
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: [main, master] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
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: 20 | |
cache: yarn | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@v4 | |
with: | |
static_site_generator: gatsby | |
- name: Cache gatsby .cache and public folder, node_modules and playwright browsers | |
id: cache-dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
.cache | |
public | |
~/.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 artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
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: 20 | |
cache: yarn | |
- name: Restore Cache of gatsby .cache and public folder, node_modules and playwright browsers | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
.cache | |
public | |
~/.cache/ms-playwright | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | |
- name: Run Playwright Tests | |
env: | |
SITE_URL: ${{ vars.SITE_URL }} | |
run: yarn test:ci | |
- name: Upload Coverage Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
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 | |
analyze: | |
needs: deploy | |
runs-on: ubuntu-latest | |
env: | |
SITE_URL: ${{ vars.SITE_URL }} | |
PSI_STRAT: ${{ vars.PSI_STRAT }} | |
PSI_DIR: ${{ vars.PSI_DIR }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Run PSI-SVG | |
run: | | |
mkdir -p $PSI_DIR | |
npx psi-svg $SITE_URL $PSI_DIR/psi.svg --strategy=$PSI_STRAT | |
- name: Commit and push analysis svg | |
run: | | |
git config --global user.name 'GitHub Action' | |
git config --global user.email '[email protected]' | |
git add $PSI_DIR/psi.svg | |
git commit -m "chore(deployment): update page speed insights svg [skip ci]" | |
git push |