chore: migrate to github actions

This commit is contained in:
DecDuck
2025-03-20 09:56:03 +11:00
parent 70150d8325
commit 6439b173f8
45 changed files with 3335 additions and 148132 deletions

7
__test__/index.spec.mjs Normal file
View File

@ -0,0 +1,7 @@
import test from 'ava'
import { sum } from '../index.js'
test('sum from native', (t) => {
t.is(sum(1, 2), 3)
})