Bump vite and @vitejs/plugin-vue in /frontend/app #616
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |