Skip to content

Bump rimraf from 5.0.7 to 5.0.8 #61

Bump rimraf from 5.0.7 to 5.0.8

Bump rimraf from 5.0.7 to 5.0.8 #61

Workflow file for this run

name: PR Check
on:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Default to bash
defaults:
run:
shell: bash
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Activate latest Yarn
shell: bash
run: |
corepack enable
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: yarn
- name: Restore cache
uses: actions/cache@v4
with:
path: |
public
.cache
key: ${{ runner.os }}-gatsby-build-${{ hashFiles('public') }}
restore-keys: |
${{ runner.os }}-gatsby-build-
- name: Install dependencies
run: yarn install --immutable
- name: Build with Gatsby
env:
PREFIX_PATHS: 'true'
run: yarn run build