Skip to content

Commit 7784081

Browse files
Merge pull request #19 from analyticsinmotion/development
Add GitHub Actions workflow for static tests
2 parents 382be10 + aab27fa commit 7784081

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [main, development]
6+
pull_request:
7+
branches: [main, development]
8+
9+
jobs:
10+
test:
11+
name: Static tests
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
submodules: true
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: lts/*
20+
- run: sudo apt-get install -y libasound2-dev
21+
- run: npm install
22+
- run: npm test
23+
- run: node test/float32.js

0 commit comments

Comments
 (0)