Skip to content

Commit

Permalink
Create deno.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lenkan authored Aug 13, 2023
1 parent 0dbcd39 commit 61cf1b4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Deno

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@v1
with:
deno-version: v1.x

- name: Verify formatting
run: deno fmt --check

- name: Run linter
run: deno lint

- name: Run tests
run: deno test -A

0 comments on commit 61cf1b4

Please sign in to comment.