Skip to content

chore: initialize pytest and create workflow #50

chore: initialize pytest and create workflow

chore: initialize pytest and create workflow #50

Workflow file for this run

name: ESLint
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
cd client
yarn install
- name: Run ESLint
run: |
cd client
yarn run eslint