Skip to content

Bump @sentry/gatsby from 8.35.0 to 8.36.0 #97

Bump @sentry/gatsby from 8.35.0 to 8.36.0

Bump @sentry/gatsby from 8.35.0 to 8.36.0 #97

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: "20"
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