Skip to content

feat: get operator's available facilities for today #177

feat: get operator's available facilities for today

feat: get operator's available facilities for today #177

Workflow file for this run

name: AGRICON CI
on:
push:
branches: [ dev, main ]
pull_request:
branches: [ dev, main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/*']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Generate Prisma Client
run: npx prisma generate
- name: Run linting
run: npm run lint
- name: Build project
run: npm run build
- name: Run tests
run: npm test