Skip to content

BCAT-535, 536 | Enable Workshop Board in approved/denied; Add Back button #258

BCAT-535, 536 | Enable Workshop Board in approved/denied; Add Back button

BCAT-535, 536 | Enable Workshop Board in approved/denied; Add Back button #258

Workflow file for this run

name: FE PR Checks
env:
GIT_LOCAL_BRANCH: ${{ github.sha }}
on: [pull_request]
jobs:
fe-pr-checks:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v3
name: checkout
- name: Install dependencies
run: |
npm install
- name: Check format
run: |
npm run format:check
- name: Check lint
run: |
npm run lint
- name: Test build
run: |
npm run build