Skip to content
This repository has been archived by the owner on Feb 19, 2025. It is now read-only.

Add node and os matrix #26

Add node and os matrix

Add node and os matrix #26

Workflow file for this run

name: Verify
on:
push:
branches:
- "main"
jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20"
- uses: pnpm/action-setup@v4
with:
version: 9.1.3
- name: Install packages
run: pnpm i
- name: Build packages
run: pnpm build:packages
- name: Run tests
run: pnpm test
- name: Type check
run: pnpm check