Skip to content

feat: introduce strict mode, change defaults and add comprehensive test suite #47

feat: introduce strict mode, change defaults and add comprehensive test suite

feat: introduce strict mode, change defaults and add comprehensive test suite #47

Workflow file for this run

name: "build-test"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- 'feature/*'
- 'releases/*'
jobs:
# make sure build/ci work properly
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run all checks
run: npm run all