remove deps and esm imports, swap over to npm #354
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: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Install Deno | |
uses: denoland/setup-deno@v2 | |
- name: Check formatting | |
run: deno fmt --check | |
- name: Lint | |
run: deno lint | |
- name: Tests | |
run: deno task test |