discord_bot/.github/workflows/lint.yml
SileNce5k 977f13f734
Some checks failed
CI / CI (push) Successful in 16s
Lint Codebase / eslint (push) Failing after 18s
Add eslint as linter and add linter workflow
2024-11-05 05:27:40 +01:00

22 lines
No EOL
374 B
YAML

name: Lint Codebase
on: [push]
jobs:
eslint:
runs-on: self-hosted
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 'latest'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint