Skip to content

303 update to fit the ux #50

303 update to fit the ux

303 update to fit the ux #50

name: Code Quality Check into Branch
on: [pull_request]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install Dependencies
run: npm install
- name: Check Prettier Formatting
run: npm run format
- name: Run Lint Check
run: npm run lint
- name: Build Storybook
run: npm run build-storybook
- name: Run Build
run: npm run build
- name: Fail if Previous Steps Failed
if: ${{ failure() }}
run: exit 1