π§ fix: Fix busted publishing automation AGIAAAN π© #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: ["*"] | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Test | |
run: deno test --allow-read --allow-write | |
## The --allow-dirty is needed here because in CI the deno.lock file may be modified | |
- name: JSR check | |
run: deno publish --dry-run --allow-dirty |