Skip to content

Add deno.yaml to lint PRs #1

Add deno.yaml to lint PRs

Add deno.yaml to lint PRs #1

Workflow file for this run

name: Linter
on:
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
# Uncomment this step to verify the use of 'deno fmt' on each commit.
# - name: Verify formatting
# run: deno fmt --check src/**
- name: Run linter
run: deno lint