Skip to content

chore: update CI workflows version to v4 and node version to 20 #11

chore: update CI workflows version to v4 and node version to 20

chore: update CI workflows version to v4 and node version to 20 #11

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
command: ["pnpm lint", "pnpm typescript", "pnpm test"]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8.6.10
- uses: actions/setup-node@v4
with:
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
node-version-file: ".nvmrc"
- run: pnpm install --frozen-lockfile
- run: pnpm prerelease
- name: Run cis
run: ${{ matrix.command }}