Skip to content

chore(deps-dev): bump the react group across 1 directory with 2 updates #161

chore(deps-dev): bump the react group across 1 directory with 2 updates

chore(deps-dev): bump the react group across 1 directory with 2 updates #161

Workflow file for this run

name: Astro
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
env:
ASTRO_TELEMETRY_DISABLED: true
ASTRO_DISABLE_UPDATE_CHECK: true
FORCE_COLOR: 1
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set Up PNPM
uses: pnpm/setup@84cb39b217b10273981911c288cd62326dc7c6d2 # v2.0.2
with:
version: 11
cache: true
runtime: node@lts
- name: Cache Build
id: cache
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
${{ github.workspace }}/node_modules/.astro
key: astro-build-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/astro.config.mjs', '**/*.jpg', '**/*.mdx', '**/*.png', '**/*.svg', '**/*.webp') }}
restore-keys: |
astro-build-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Build With Astro
run: pnpm run build
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set Up PNPM
uses: pnpm/setup@84cb39b217b10273981911c288cd62326dc7c6d2 # v2.0.2
with:
version: 11
cache: true
runtime: node@lts
- name: Cache Build
id: cache
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
${{ github.workspace }}/node_modules/.astro
key: astro-check-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/astro.config.mjs', '**/*.jpg', '**/*.mdx', '**/*.png', '**/*.svg', '**/*.webp') }}
restore-keys: |
astro-check-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Run Checks With Astro
run: pnpm run check