Skip to content

Commit

Permalink
Merge pull request #25 from snowteamer/setup-github-ci
Browse files Browse the repository at this point in the history
Setup GitHub CI
  • Loading branch information
taoeffect committed Jan 23, 2024
2 parents a16d945 + 0c85a80 commit bd5577b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deno

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

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.38.2
- run: deno task test --no-check

0 comments on commit bd5577b

Please sign in to comment.