Skip to content

GitHub ↠ GitLab test B ↞ [auto-sync from https://github.com/adamlui/c… #5190

GitHub ↠ GitLab test B ↞ [auto-sync from https://github.com/adamlui/c…

GitHub ↠ GitLab test B ↞ [auto-sync from https://github.com/adamlui/c… #5190

name: Lint pushes/PRs
on: [push, pull_request]
permissions:
contents: read
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint