Skip to content

build(deps-dev): bump webpack from 5.91.0 to 5.94.0 in /src/front #515

build(deps-dev): bump webpack from 5.91.0 to 5.94.0 in /src/front

build(deps-dev): bump webpack from 5.91.0 to 5.94.0 in /src/front #515

Workflow file for this run

name: Front - Test
on:
push:
paths:
- 'src/front/**'
- '.github/workflows/front.yml'
- '.github/actions/front/**'
- 'CHANGELOG.md'
- 'changelog_context.json'
- 'src/common/**'
defaults:
run:
working-directory: src/front
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: src/front/.node-version
- name: Install npm dependencies
run: |
npm ci
cd ../common && npm ci
- name: Test
run: npm run test:final