Skip to content

Shift to NPM NDNts #139

Shift to NPM NDNts

Shift to NPM NDNts #139

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Lint
on:
# Runs on pushes targeting the default branch
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Down scope as necessary via https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
checks: write
contents: read
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Install dependencies
run: deno install --allow-scripts
- name: Deno lint
run: deno lint
- name: Deno test
run: deno test --no-check
- name: Deno format check
run: deno fmt --check