Skip to content

style(components): 💄 adds white iconColor variant #8

style(components): 💄 adds white iconColor variant

style(components): 💄 adds white iconColor variant #8

name: Lint and Format
on: [push]
jobs:
lint-and-format:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run Prettier
run: npm run format