Skip to content

Commit

Permalink
🧹 chore: add ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Bottie McBotface committed Dec 16, 2024
1 parent ad582c7 commit e028e00
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
push:
branches: ["*"]

jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: denoland/setup-deno@v2
with:
deno-version: v2.x

- name: Test
run: deno test --allow-read --allow-write

- name: JSR check
run: deno publish --dry-run

0 comments on commit e028e00

Please sign in to comment.