Skip to content

Commit

Permalink
add ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andykais committed Jan 8, 2025
1 parent 49214d6 commit cb366ac
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Setup Repo
uses: actions/checkout@v3

- name: Setup Deno
uses: denoland/setup-deno@v2

- name: Test
run: deno task test

0 comments on commit cb366ac

Please sign in to comment.