WIP Set up CI
Some checks failed
Test and lint / Test and lint (push) Failing after 12s

This commit is contained in:
2024-12-03 17:47:34 +01:00
parent 51ae16e57f
commit b8b75fd6e8
2 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
name: Test and lint
on:
push:
jobs:
test_and_lint:
name: Test and lint
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.1.x
- name: Run test suite
run: "deno task test"
- name: Run linter
run: "deno lint"