Skip to content

chore(release): prepare for v3.3.0 #143

chore(release): prepare for v3.3.0

chore(release): prepare for v3.3.0 #143

Workflow file for this run

name: CI
on:
push:
branches: [main]
workflow_call:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
script: [check, fmt-check, lint, test]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version-file: .node-version
- run: npm ci
- run: npm run ${{ matrix.script }}
- if: github.event_name == 'push' && matrix.script == 'test'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}