Update storybook monorepo (major) #9795
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: CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| # Allows run workflow from Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Install with Yarn | |
| run: yarn && yarn setup | |
| - name: Run @lavamoat/git-safe-dependencies | |
| run: yarn git-safe-dependencies | |
| - name: Run @lavamoat/git-safe-dependencies (git-safe-actions) | |
| run: yarn git-safe-actions | |
| - name: Compile with TypeScript | |
| run: yarn tsc | |
| - name: Lint with ESLint | |
| run: yarn lint | |
| - name: Test with Jest | |
| run: yarn test |