Skip to content

add team members roles #254

add team members roles

add team members roles #254

Workflow file for this run

name: Lint and Format Check
on:
pull_request:
paths:
- 'client/**'
workflow_dispatch:
jobs:
client-lint-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.18.0'
- name: Install dependencies
run: npm install
working-directory: client
- name: Run ESLint
run: npm run lint
working-directory: client
- name: Run Prettier for formatting check
run: npx prettier --check "src/**/*.{ts,tsx}"
working-directory: client
- name: Run Type Check
run: npx --package=typescript@latest -- tsc --build .
working-directory: client