Skip to content

Commit bb40511

Browse files
committed
Add job
1 parent c18bdfd commit bb40511

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: test
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
node: [18, 20, 22]
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
with:
13+
node-version: ${{ matrix.node }}
14+
- run: npm test

readme.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# fourier-transform
1+
# fourier-transform [![test](https://github.com/scijs/fourier-transform/actions/workflows/test.yml/badge.svg)](https://github.com/scijs/fourier-transform/actions/workflows/test.yml)
22

33
Efficient real-valued FFT for 2<sup>n</sup>-size inputs. Split-radix algorithm with precomputed twiddle factors and typed-array buffers. Zero dependencies.
44

@@ -73,3 +73,5 @@ Based on the split-radix real FFT from [dsp.js](https://github.com/corbanbrook/d
7373
## License
7474

7575
MIT
76+
77+
<p align="center"><a href="https://github.com/krishnized/license">ॐ</a></p>

0 commit comments

Comments
 (0)