Skip to content

Feature: Doctors messaging first #23

Feature: Doctors messaging first

Feature: Doctors messaging first #23

Workflow file for this run

name: Lint
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci
# Build step runs a linter as well and will fail if there are any linting errors
- name: Run Linter and Build
run: npm run build