Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.14.1 to 8.7.0 #1380

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.14.1 to 8.7.0

build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.14.1 to 8.7.0 #1380

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: |
npm ci
npm run lint
npm test
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build Storybook
run: npm run build-storybook --quiet
- name: Serve Storybook and run tests
run: |
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"npx http-server storybook-static --port 6006 --silent" \
"npx wait-on tcp:6006 && yarn test-storybook"
automerge:
name: Merge dependabot's PRs
needs: test
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3