Skip to content

Merge pull request #6 from apideck-libraries/feat/skip-browsers #19

Merge pull request #6 from apideck-libraries/feat/skip-browsers

Merge pull request #6 from apideck-libraries/feat/skip-browsers #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm install
- run: npm run typecheck
- run: npm run build
- run: npm test