Skip to content

Commit

Permalink
Feat(test): add test suite (#1)
Browse files Browse the repository at this point in the history
* add test environment

* try with first tests

* add github action
  • Loading branch information
alvinsj authored Jun 8, 2024
1 parent 3d038e9 commit a9679a0
Show file tree
Hide file tree
Showing 5 changed files with 995 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

name: Test

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
- run: npm run test
Loading

0 comments on commit a9679a0

Please sign in to comment.