Skip to content

Use Deno tooling

Use Deno tooling #4

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- run: script/fmt
- uses: pre-commit-ci/[email protected]
if: ${{ github.event_name == 'pull_request' }}