Files
reffuse/.gitea/workflows/lint.yaml
Julien Valverdé 2146489fc4
Some checks failed
Publish / publish (push) Failing after 8s
Lint / lint (push) Failing after 8s
Initial commit
2025-01-09 08:42:15 +01:00

21 lines
450 B
YAML

name: Lint
run-name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Clone repo
uses: actions/checkout@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: npm run lint:tsc