docs: update install to use jsr prefix (#192) #268
This file contains hidden or 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: Checks | |
| on: [push, pull_request] | |
| jobs: | |
| checks: | |
| name: Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Install stable deno | |
| uses: denoland/setup-deno@v2 | |
| - name: Run check | |
| run: deno check mod.ts | |
| # TODO: Re-enable these tests | |
| # - name: Run test:doc | |
| # run: deno task test:doc | |
| - name: Run fmt | |
| run: deno fmt --check | |
| - name: Run lint | |
| run: deno lint |