Skip to content

Commit

Permalink
Add github actions
Browse files Browse the repository at this point in the history
Signed-off-by: m4rc3l05 <15786310+M4RC3L05@users.noreply.github.com>
  • Loading branch information
M4RC3L05 committed Apr 2, 2024
1 parent d6daf36 commit 4b45a83
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push, pull_request]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: clone repository
uses: actions/checkout@v4

- name: install deno
uses: denoland/setup-deno@v1
with:
deno-version: 1.X

- name: check format
run: deno fmt --check

- name: check linting
run: deno lint

0 comments on commit 4b45a83

Please sign in to comment.