Skip to content

Bumped version to 2024.5.20 ↞ [auto-sync from `adamlui/chatgpt-ap… #1928

Bumped version to 2024.5.20 ↞ [auto-sync from `adamlui/chatgpt-ap…

Bumped version to 2024.5.20 ↞ [auto-sync from `adamlui/chatgpt-ap… #1928

Workflow file for this run

name: ESLint
on: [push, pull_request]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 21
- name: Install dependencies
run: npm ci # instead of install to ensure consistency and determinism in CI/CD workflow
- name: Run ESLint
run: npm run lint