Skip to content

Commit

Permalink
ci: check and lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
sehnryr committed Oct 17, 2024
1 parent 2efe02b commit ae4f919
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deno

on:
push:
branches:
- dev-vite-react
pull_request:
branches:
- dev-vite-react

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Setup repo
uses: actions/checkout@v4

- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: e61e2e4b5cc10bd3e1d92472e035edd794ab0311

- name: Run checks
run: deno task check

- name: Run linter
run: deno task lint

0 comments on commit ae4f919

Please sign in to comment.