Skip to content

chore(main): release 1.0.0 #3

chore(main): release 1.0.0

chore(main): release 1.0.0 #3

Workflow file for this run

name: pr-checks
on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
jobs:
build-test-lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test