Skip to content

Add GitHub Actions workflow to link new issues to the project board #2

Add GitHub Actions workflow to link new issues to the project board

Add GitHub Actions workflow to link new issues to the project board #2

Workflow file for this run

name: Check linting and format
on:
pull_request:
branches:
- "**"
push:
branches:
- main
workflow_call:
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Check linting
run: deno fmt --check .
check-linting:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Check typing
run: deno lint