Skip to content

Bump mysql2 from 3.9.7 to 3.9.8 in /backend/app #610

Bump mysql2 from 3.9.7 to 3.9.8 in /backend/app

Bump mysql2 from 3.9.7 to 3.9.8 in /backend/app #610

Workflow file for this run

name: Run Prettier and ESLint
on:
push:
pull_request:
branches:
- main
paths:
- '**.ts'
- '**.vue'
jobs:
prettify:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
defaults:
run:
working-directory: ./backend/app
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Install packages
run: npm ci
- name: Run Prettier
run: npm run format
- name: Lint
run: npm run lint