Skip to content

Upgrade vue

Upgrade vue #168

Workflow file for this run

name: Check code format
on:
pull_request:
paths:
- "frontend/**"
jobs:
prettier:
runs-on: windows-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.19.0
- name: Setup Package
run: npm ci
- name: Check formating
run: npm run format:check