Skip to content

Bump version

Bump version #2800

Workflow file for this run

name: Tests
on: push
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
task:
- name: Check
command: pnpm check
- name: Test
command: pnpm test
- name: Build
command: pnpm build
steps:
- name: Checkout the branch
uses: actions/checkout@v7.0.1
- name: Install pnpm
uses: pnpm/action-setup@v6.0.9
with:
version: latest
- name: Setup Node.js environment
uses: actions/setup-node@v7.0.0
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: ${{ matrix.task.name }}
run: ${{ matrix.task.command }}