Skip to content

Merge pull request #205 from MetaCell/feature/VFB-227 #188

Merge pull request #205 from MetaCell/feature/VFB-227

Merge pull request #205 from MetaCell/feature/VFB-227 #188

Workflow file for this run

name: Run ESLint
on:
push:
branches:
- main
- development
pull_request:
branches:
- main
- development
jobs:
eslint:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Step 2: Set up Node.js
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Adjust the Node.js version as needed
# Step 3: Install dependencies using Yarn
- name: Install dependencies
working-directory: applications/virtual-fly-brain/frontend
run: yarn install
# Step 4: Run ESLint
- name: Run ESLint
working-directory: applications/virtual-fly-brain/frontend
run: yarn build