Skip to content

Bump storybook from 9.0.4 to 9.0.12 #25

Bump storybook from 9.0.4 to 9.0.12

Bump storybook from 9.0.4 to 9.0.12 #25

Workflow file for this run

name: lint
on:
pull_request:
push:
branches: [main]
jobs:
run:
name: Run Linter
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# The Chromatic action requires full access to the Git history.
fetch-depth: 0
# This includes the cache to speed up `yarn install` in the step below.
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: yarn
node-version-file: package.json
- name: Install node_modules
run: yarn install --immutable
- name: Run ESLint
run: yarn lint