Skip to main content
Go to Latest
File
name: ci
on: [push, pull_request]
jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: denoland/setup-deno@v1 with: deno-version: v1.x - name: Run fmt run: deno fmt --check --ignore=README.md,CHANGELOG.md - name: Run lint run: deno lint - name: Run test run: deno test