Bump eslint-plugin-vue from 9.29.0 to 9.30.0 in /webapp #98
Workflow file for this run
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: Yarn Prettier | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: webapp | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Setup Node.js and yarn | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
cache: "yarn" | |
cache-dependency-path: "webapp/yarn.lock" | |
- name: Install WebApp dependencies | |
run: yarn install --frozen-lockfile | |
- name: Check Formatting | |
run: yarn prettier --check src/ |