Skip to content

Update actions/checkout action to v7 #33

Update actions/checkout action to v7

Update actions/checkout action to v7 #33

Workflow file for this run

name: Deno CI Check
on:
pull_request:
branches:
- "main"
paths:
- "**.ts"
- "deno.json"
- ".github/workflows/deno-ci-check.yml"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Deno
uses: denoland/setup-deno@e95548e56dfa95d4e1a28d6f422fafe75c4c26fb # v2.0.3
with:
deno-version: v2.x
- name: Verify formatting
run: deno fmt --check
- name: Run linter
run: deno lint
- name: Run tests
run: deno test -A