Skip to content

Update package dependencies, including pnpm to version 10.27.0, and a… #104

Update package dependencies, including pnpm to version 10.27.0, and a…

Update package dependencies, including pnpm to version 10.27.0, and a… #104

Workflow file for this run

name: Test
on:
push:
# branches: [main, develop]
pull_request:
# branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test
- name: Run lint
run: pnpm lint
- name: Build packages
run: pnpm build