Skip to content

Revert "[TECH] Add a workflow to build version" #202

Revert "[TECH] Add a workflow to build version"

Revert "[TECH] Add a workflow to build version" #202

Workflow file for this run

name: Check ESLint
on:
pull_request:
branches:
- main
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint