Skip to content

chore: add release commit author #22

chore: add release commit author

chore: add release commit author #22

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
- next
paths-ignore:
- "**.md"
push:
branches:
- main
- next
paths-ignore:
- "**.md"
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 18
- 20
- lts/*
- current
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: ${{ env.node }}
- run: npm ci
- run: npm audit signatures
- run: npm run typecheck
- run: npm run build