Merge pull request '🔧 ci: add Deno lint and format check workflow' (#1) from feature/actions into main

Reviewed-on: https://git.polytech.djalim.fr/admin/PolyMPR/pulls/1
This commit was merged in pull request #1.
This commit is contained in:
2026-01-09 11:48:18 +00:00
+26
View File
@@ -0,0 +1,26 @@
name: "Check Deno code"
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
check-code:
name: "Check Deno code"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Check formatting
run: deno fmt --check
- name: Check linting
run: deno lint