Skip to content

feat: Added Discord invitation link in the footer and header (as a button) #25

feat: Added Discord invitation link in the footer and header (as a button)

feat: Added Discord invitation link in the footer and header (as a button) #25

Workflow file for this run

name: Lint and format checking
on:
pull_request:
branches:
- "**"
push:
branches:
- master
workflow_call:
jobs:
lint:
name: 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 linting
run: deno lint .
format:
name: Check format
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 formatting
run: deno fmt --check .