Skip to content

pnpm: bump @astrojs/check from 0.8.0 to 0.9.1 #929

pnpm: bump @astrojs/check from 0.8.0 to 0.9.1

pnpm: bump @astrojs/check from 0.8.0 to 0.9.1 #929

Workflow file for this run

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
name: Link Checker
jobs:
linkinator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: package.json
check-latest: true
node-version: 22
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Install Chrome
run: pnpx puppeteer browsers install chrome
- name: Run checker
run: pnpm check