aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yaml
diff options
context:
space:
mode:
authorLarsVomMars2020-07-13 16:31:27 +0200
committerLarsVomMars2020-07-13 16:31:27 +0200
commitb4116ee7e549ae35ad8718f2a9d087a48e2821fb (patch)
tree3477d23f3e25e8837edee14d1fd750012a6149c3 /.github/workflows/test.yaml
parent356ca52e374219e57c4f0384209f67195363a227 (diff)
Added linting to workflow
Diffstat (limited to '.github/workflows/test.yaml')
-rw-r--r--.github/workflows/test.yaml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 352e318..acc0181 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -21,7 +21,9 @@ jobs:
uses: denolib/setup-deno@master
with:
deno-version: ${{ matrix.deno-version }}
- - name: Lint Deno Module
+ - name: Format check Deno Module
run: deno fmt --check
+ - name: Lint Deno Module
+ run: deno lint --unstable
- name: Test Deno Module
run: deno test --allow-none