Skip to content

chore: release v0.4.1 #724

chore: release v0.4.1

chore: release v0.4.1 #724

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
- 17.x
- 18.x
steps:
- uses: actions/checkout@v3
- run: corepack enable pnpm
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint:check
- run: pnpm test:coverage
- run: pnpm test:e2e
- run: pnpm tsc --noEmit
- run: pnpm test:typecheck
- uses: codecov/codecov-action@v3.1.1