chore: disable santization checks for sandbox test #171
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@v2 | |
- name: download deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.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 |