Skip to content

Implement the Card array generation logic #1 #29

Implement the Card array generation logic #1

Implement the Card array generation logic #1 #29

Workflow file for this run

name: ESLint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
eslint-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
<<<<<<< HEAD

Check failure on line 23 in .github/workflows/eslint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/eslint.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
node-version: '16'
=======
node-version: '20'
>>>>>>> 40be68fb8b2b7a85467defb2ce71dc14af513a7f
- name: Install backend dependencies
working-directory: ./backend
run: npm install
- name: Run backend lint
working-directory: ./backend
run: npm run lint
eslint-frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
<<<<<<< HEAD
node-version: '16'
=======
node-version: '20'
>>>>>>> 40be68fb8b2b7a85467defb2ce71dc14af513a7f
- name: Install frontend dependencies
working-directory: ./frontend
run: npm install
- name: Run frontend lint
working-directory: ./frontend
run: npm run lint