Skip to content

Bump @vue/eslint-config-prettier from 9.0.0 to 10.1.0 in /frontend #608

Bump @vue/eslint-config-prettier from 9.0.0 to 10.1.0 in /frontend

Bump @vue/eslint-config-prettier from 9.0.0 to 10.1.0 in /frontend #608

Workflow file for this run

name: Frontend CI
on:
push:
paths:
- "frontend/**"
branches:
- main
pull_request:
paths:
- "frontend/**"
branches:
- main
permissions:
contents: read
defaults:
run:
working-directory: frontend
jobs:
build:
name: Build and test
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.10.0]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: "./frontend/package-lock.json"
- run: npm ci
- run: npm run build --if-present
# - run: npm run test:unit