Upgrade: Bump @vitejs/plugin-vue from 5.1.4 to 5.1.5 in /web/frontend #579
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: Run frontend-ci | |
on: | |
pull_request: | |
paths: | |
- "web/frontend/**" | |
- ".github/**" | |
push: | |
branches: | |
- main | |
paths: | |
- "web/frontend/**" | |
- ".github/**" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
frontend-ci: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: web/frontend | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
web/frontend | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: npm install | |
run: | | |
npm ci | |
- name: Run vitest | |
run: npm run test |