Merge pull request #169 from oliver-oloughlin/chore/increment-module-… #295
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: Test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
permissions: | |
contents: read | |
id-token: write # The OIDC ID token is used for authentication with JSR. | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v3 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Check Types | |
run: deno task check | |
- name: Check formatting | |
run: deno fmt --check | |
- name: Run linter | |
run: deno lint | |
- name: "Test publish" | |
run: deno publish --dry-run | |
- name: Run tests | |
run: deno task test |