Decode Ogg/Vorbis and AIFF via a mini Rust library, using Symphonia a… #172
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
node: [18, 20, 22, 23] | |
name: test (Node v${{ matrix.node }}) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install | |
- run: npm run lint | |
- run: npm run svelte-check | |
- run: ./tests/runtests.sh |