Skip to content

buildIn: Fieldset for FancyRadioList #22

buildIn: Fieldset for FancyRadioList

buildIn: Fieldset for FancyRadioList #22

Workflow file for this run

name: Code Quality Check into Branch
on: [push, 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' # Specify your Node.js version here
- name: Install Dependencies
run: npm install
- name: Ceck Prettier Formatting
run: npx prettier --check .
- name: Run ESLint
run: npm run lint