From e028e00d7c44f4271821ade73c84f77c6b3ecefb Mon Sep 17 00:00:00 2001 From: Bottie McBotface Date: Mon, 16 Dec 2024 21:08:11 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20add=20ci.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8a1d772 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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 + \ No newline at end of file