Skip to content

local server config, intiial tests #52

local server config, intiial tests

local server config, intiial tests #52

name: React Native Lint
on:
push:
paths:
- 'frontend/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20.x'
- name: Navigate to frontend directory
working-directory: frontend
run: |
echo "Current directory:"
pwd
echo "Contents of the current directory:"
ls
- name: Install dependencies
working-directory: frontend
run: npm install
- name: Run linter
working-directory: frontend
run: npm run lint