Skip to content

v2.0

v2.0 #67

Workflow file for this run

name: Deno PR check
on:
workflow_call:
pull_request:
branches: ['master']
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/[email protected]
- name: Setup Deno
uses: denoland/[email protected]
with:
deno-version: v1.x
# Uncomment this step to verify the use of 'deno fmt' on each commit.
- name: Verify formatting
run: deno fmt --check
- name: Run linter
run: deno lint
- name: Run tests
run: deno test -A