-
Notifications
You must be signed in to change notification settings - Fork 214
50 lines (48 loc) · 1.37 KB
/
app.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# name: "frontend / app"
# on:
# pull_request:
# paths:
# - "frontend/app/**"
# jobs:
# lint:
# runs-on: ubuntu-latest
# steps:
# - name: Clone repository
# uses: actions/checkout@v4
# - name: Setup pnpm
# uses: pnpm/action-setup@v4
# with:
# version: 9.15.4
# run_install: false
# - name: Setup Node.js
# uses: actions/setup-node@v4
# with:
# cache: pnpm
# cache-dependency-path: frontend/app/pnpm-lock.yaml
# - name: Install dependencies
# working-directory: frontend/app
# run: pnpm install --frozen-lockfile
# - name: Lint
# working-directory: frontend/app
# run: npm run lint:check
# build:
# runs-on: ubuntu-latest
# steps:
# - name: Clone repository
# uses: actions/checkout@v4
# - name: Setup pnpm
# uses: pnpm/action-setup@v4
# with:
# version: 9.15.4
# run_install: false
# - name: Setup Node.js
# uses: actions/setup-node@v4
# with:
# cache: pnpm
# cache-dependency-path: frontend/app/pnpm-lock.yaml
# - name: Install dependencies
# working-directory: frontend/app
# run: pnpm install --frozen-lockfile
# - name: Build
# working-directory: frontend/app
# run: npm run build