Bump storybook from 9.0.4 to 9.0.12 #25
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |