Skip to content

Switch to pnpm and Node.js 24 #53

Switch to pnpm and Node.js 24

Switch to pnpm and Node.js 24 #53

Workflow file for this run

name: Build, Lint, and Test
on:
push:
branches: [main]
pull_request:
jobs:
build-lint-test:
name: Build, Lint, and Test
runs-on: ubuntu-22.04
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.11.0
- uses: actions/setup-node@v6
with:
node-version: 24.x
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm build
- run: pnpm test
all-jobs-pass:
name: All jobs pass
runs-on: ubuntu-22.04
needs:
- build-lint-test
steps:
- run: echo "success"