Skip to content

Commit

Permalink
feat: introduce strict mode, change defaults and add comprehensive te…
Browse files Browse the repository at this point in the history
…st suite (#17)
  • Loading branch information
LouisBrunner authored Feb 12, 2024
1 parent 14a635f commit e22aacd
Show file tree
Hide file tree
Showing 9 changed files with 494 additions and 77 deletions.
27 changes: 16 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
name: "build-test"
on: # rebuild any PRs and main branch changes
name: Build & Test

on:
pull_request:
push:
branches:
- main
- 'feature/*'
- 'releases/*'

jobs:
# make sure build/ci work properly
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: |
npm install
npm run all
- 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
Loading

0 comments on commit e22aacd

Please sign in to comment.