fix: do not die on DEBUG variable env permissions not granted #277
Workflow file for this run
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] | |
jobs: | |
build: | |
name: tests (${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: download deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: check format | |
if: matrix.os == 'ubuntu-latest' | |
run: deno fmt --check | |
- name: check linting | |
if: matrix.os == 'ubuntu-latest' | |
run: deno lint | |
- name: run tests | |
run: deno task test | |
- name: pretend to publish package | |
run: deno publish --dry-run |