Skip to content

Added role to employee info #82

Added role to employee info

Added role to employee info #82

Workflow file for this run

name: Server
on:
pull_request:
paths:
- "apps/server/**"
defaults:
run:
working-directory: "apps/server"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up node 18
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: yarn install
- name: Check lints
run: yarn lint
- name: Check Format
run: yarn format:check