feat: Add unit-tests #25

Merged
timharek merged 31 commits from feature-testing into main 2024-04-11 19:10:16 +00:00
1 changed files with 18 additions and 0 deletions
Showing only changes of commit 42e1193669 - Show all commits

18
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Test
on:
push:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Run checks
run: deno task check
- name: Run test
run: deno task test