chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.11.0 in /packages/eslint-config-custom #590
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
name: "Storybook Tests" | |
on: | |
pull_request: | |
types: [opened, edited, reopened, synchronize] | |
paths: | |
- "packages/wethegit-components/**" | |
- "yarn.lock" | |
- "**/package.json" | |
push: | |
branches: | |
- main | |
paths: | |
- "packages/wethegit-components/**" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: ${{ github.workflow }}-${{ github.ref }}-storybook-tests | |
jobs: | |
# Install and cache npm dependencies | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: "yarn" | |
node-version-file: ".nvmrc" | |
- name: Install Dependencies | |
run: yarn install --immutable | |
- name: Install Playwright | |
run: npx playwright install --with-deps | |
- name: Build Storybook | |
run: npx turbo run build --filter=@wethegit/components | |
- name: Serve Storybook and run tests | |
working-directory: ./packages/wethegit-components | |
run: yarn test-storybook:ci |