Skip to content

Update pnpm to v11.18.0 (#206) #454

Update pnpm to v11.18.0 (#206)

Update pnpm to v11.18.0 (#206) #454

Workflow file for this run

name: CI
permissions: {}
on:
push:
branches: [latest]
pull_request:
branches: [latest]
# Automatically cancel in-progress actions on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
fail-fast: false
matrix:
command: [test, typecheck]
os: [ubuntu-latest, windows-latest]
astro: [^5, ^6, ^7]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
- uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
with:
node-version: 24.18.0
- run: pnpm i
- run: pnpm i --workspace-root astro@${{ matrix.astro }}
- run: pnpm i astro@${{ matrix.astro }}
working-directory: packages/astro-og-canvas
- run: pnpm i astro@${{ matrix.astro }}
working-directory: demo
- name: Test
run: pnpm run ${{ matrix.command }}