Skip to content

Commit

Permalink
Merge pull request #5 from thefrontside/tm/add-lint-check
Browse files Browse the repository at this point in the history
Add Verify GitHub Actions workflow
  • Loading branch information
taras authored Sep 20, 2024
2 parents e9bdd37 + a83aeb1 commit 4c3f37d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Verify

on:
push:
branches: main
pull_request:
branches: main

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest

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

- name: setup deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.46.x

- run: deno fmt --check

- run: deno lint

- run: deno test

0 comments on commit 4c3f37d

Please sign in to comment.