Skip to content

Commit f45fecd

Browse files
committed
audit wave: metadata (repository/license/engines/sideEffects) + CI workflow + convention/dedupe edits — see audiojs.github.io .work/audit.md
1 parent 8f3c295 commit f45fecd

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: test
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
node-version: [18, 20, 22]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
registry-url: https://registry.npmjs.org
25+
26+
- name: Install dependencies
27+
run: npm i
28+
29+
- name: Run tests
30+
run: npm test

0 commit comments

Comments
 (0)