build(deps-dev): bump @storybook/addon-actions from 6.5.16 to 8.5.3 #3138
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
name: 'Linter' | |
on: 'push' | |
jobs: | |
linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: 'npm' | |
- name: Install modules | |
run: npm install | |
- name: Run linter | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: Generate types | |
run: npm run type:emit | |
- name: Run type check | |
run: npm run type:check |