Skip to content

chore: check entire project in ci #86

chore: check entire project in ci

chore: check entire project in ci #86

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: denoland/setup-deno@main
with:
deno-version: "1.x"
- name: Run fmt
run: |
deno fmt --check
- name: Run lint
run: |
deno lint
- name: Check project
run: |
deno task check:types
- name: Run tests
run: |
deno task test