Skip to content

Pushing jest tests

Pushing jest tests #2

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'npm'
- name: Install Dependencies
run: |
cd frontend && npm install
cd ../backend && npm install
- name: Run ESLint
run: |
cd frontend && npm run lint
cd ../backend && npm run lint