Skip to content

ci: setup github

ci: setup github #1

Workflow file for this run

name: Main
on: [push, pull_request]
jobs:
main:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: pnpm build
- run: pnpm test