Skip to content

chore: Upgrade to Storybook 8, Tailwind 3, and npm v20+ #743

chore: Upgrade to Storybook 8, Tailwind 3, and npm v20+

chore: Upgrade to Storybook 8, Tailwind 3, and npm v20+ #743

Workflow file for this run

name: Linting/Formatting
# Run on the opening of a pull request and subsequent commits to it.
on: pull_request
jobs:
lint-and-check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Set up Node ⬢
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies 🧱
run: npm install
- name: Lint scripts 🏗
run: npm run lint:js
- name: Lint styles 💅
run: npm run lint:style
- name: Check Prettier ✨
run: npm run lint:format