2022-09-03 09:30:45 +00:00
|
|
|
on:
|
2022-09-03 09:36:48 +00:00
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
paths:
|
|
|
|
- "**.ts"
|
|
|
|
- "**.vue"
|
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
|
|
|
paths:
|
|
|
|
- "**.ts"
|
|
|
|
- "**.vue"
|
2022-09-03 09:30:45 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
Frontend:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: pnpm/action-setup@v2.2.2
|
|
|
|
with:
|
|
|
|
version: 6.0.2
|
|
|
|
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
2022-09-03 09:31:38 +00:00
|
|
|
working-directory: frontend
|
2022-09-03 09:30:45 +00:00
|
|
|
|
|
|
|
- name: Vitest
|
2022-09-03 09:35:06 +00:00
|
|
|
run: pnpm test:ci
|
2022-09-03 09:31:38 +00:00
|
|
|
working-directory: frontend
|