Merge pull request #143 from takker99/update-deno-dependencies #384
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: "1.36.1" | |
- name: Check fmt | |
run: deno fmt --check | |
- name: Run lint | |
run: deno lint | |
- name: Run type check | |
run: deno check --remote App.tsx |