Skip to content

chore : Spring Boot 3.2.5 #198

chore : Spring Boot 3.2.5

chore : Spring Boot 3.2.5 #198

Workflow file for this run

name: front
on: [ push, pull_request, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
node-version: [ 20.x ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: install, lint, audit, build, test
run: |
cd front
npm i
npm run lint
npm run audit:prod
npm run e2e
npm run build
npm test