Skip to content

2.0.0

2.0.0 #2

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- '*'
env:
FORCE_COLOR: true
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: pnpm
- run: pnpm install && pnpm add -D @reporters/github
- run: pnpm lint
- run: node --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout