Docs and 0.3.0 release #4
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: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Deno | |
uses: denoland/setup-deno@v1 | |
- name: Verify formatting | |
run: deno fmt --check | |
- name: Run linter | |
run: deno task lint | |
- name: Run TypeScript checking | |
run: deno task check | |
- name: Run tests | |
run: deno task test | |
- name: Publish dry run | |
run: deno publish --dry-run |