Skip to content

chore: fixing docs build #61

chore: fixing docs build

chore: fixing docs build #61

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x] # Define Node.js versions
typescript-version: ['3.9', '4.0', '4.3', '5.3'] # Define TypeScript versions
steps:
- uses: actions/checkout@v1
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install TypeScript
run: npm install -g typescript@${{ matrix.typescript-version }}
- run: pnpm install --frozen-lockfile
- run: pnpm run test