Skip to content

Commit e22aacd

Browse files
authored
feat: introduce strict mode, change defaults and add comprehensive test suite (#17)
1 parent 14a635f commit e22aacd

File tree

9 files changed

+494
-77
lines changed

9 files changed

+494
-77
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
1-
name: "build-test"
2-
on: # rebuild any PRs and main branch changes
1+
name: Build & Test
2+
3+
on:
34
pull_request:
45
push:
5-
branches:
6-
- main
7-
- 'feature/*'
8-
- 'releases/*'
96

107
jobs:
11-
# make sure build/ci work properly
128
build:
9+
name: Build & Test
1310
runs-on: ubuntu-latest
1411
steps:
15-
- uses: actions/checkout@v1
16-
- run: |
17-
npm install
18-
npm run all
12+
- uses: actions/checkout@v4
13+
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: 20
17+
cache: 'npm'
18+
19+
- name: Install dependencies
20+
run: npm install
21+
22+
- name: Run all checks
23+
run: npm run all

0 commit comments

Comments
 (0)