fix(jsr): plugins do not depends on https import. #132
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: check | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Setup latest deno version | |
uses: denoland/setup-deno@v1 | |
- name: Verify formatting | |
run: deno fmt --check | |
- name: Verify lint | |
run: deno lint | |
- name: Verify ts | |
run: deno check ./cli.ts |