Skip to content

build(deps-dev): bump vite from 4.5.5 to 5.4.11 #854

build(deps-dev): bump vite from 4.5.5 to 5.4.11

build(deps-dev): bump vite from 4.5.5 to 5.4.11 #854

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
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
npm run build
e2e:
name: Playwright Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npx playwright install --with-deps
- run: npx playwright test
- uses: actions/upload-artifact@v4
with:
name: playwright-report
path: playwright-report/
retention-days: 30
automerge:
name: Merge dependabot's PRs
needs: [test, e2e]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3