deps: update dependency eslint-plugin-storybook to v0.11.1 - autoclosed #1645
Workflow file for this run
This file contains 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
# This is a Github Workflow that runs lint, formatter and unit tests on every | |
# push and pull request. | |
name: Quality | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quality: | |
name: Checking code quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: yarn | |
- name: Setting up dependencies & workspaces | |
run: yarn install --immutable --immutable-cache && yarn run -T setup | |
- name: Checking linter | |
run: yarn run -T lint | |
- name: Checking format | |
run: yarn run -T format | |
- name: Checking typings | |
run: yarn run -T types-check |