ci: Add ci-step

Signed-off-by: Tim Hårek Andreassen <tim@harek.no>
This commit is contained in:
Tim Hårek Andreassen 2024-04-07 23:09:20 +02:00
parent f2811164e2
commit 42e1193669
No known key found for this signature in database
GPG Key ID: E59C7734F0E10EB5
1 changed files with 18 additions and 0 deletions

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