Skip to content

Add checkout step to release workflow to fix git repository access #32

Add checkout step to release workflow to fix git repository access

Add checkout step to release workflow to fix git repository access #32

Workflow file for this run

name: CI
on: push
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Check formatting
run: deno fmt --check
- name: Lint code
run: deno lint
- name: Type check
run: deno check main.ts