Skip to content

ci: replace custom node setup action with pnpm/setup #974

ci: replace custom node setup action with pnpm/setup

ci: replace custom node setup action with pnpm/setup #974

Workflow file for this run

name: Playground CI
on:
pull_request:
paths:
- 'pnpm-lock.yaml'
- 'playground/**/*'
- '.github/workflows/playground-ci.yaml'
concurrency:
group: ${{github.workflow}}-${{github.head_ref}}
cancel-in-progress: true
env:
CI: true
DO_NOT_TRACK: '1'
jobs:
build_test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: pnpm/setup@v2
with:
cache: true
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build for router
run: pnpm run --filter ./playground build:router
- uses: ./.github/actions/git-dirty-check
with:
package-name: playground
- name: Build as plugin
run: pnpm run --filter ./playground build