forked from hotosm/fAIr
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (50 loc) · 1.46 KB
/
frontend_build.yml
File metadata and controls
59 lines (50 loc) · 1.46 KB
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
51
52
53
54
55
56
57
58
59
name: Frontend Build
on:
push:
branches: [master, develop]
paths:
- "frontend/**"
- ".github/workflows/frontend_build.yml"
pull_request:
branches: [master, develop]
paths:
- "frontend/**"
- ".github/workflows/frontend_build.yml"
jobs:
frontend-unit-test:
uses: hotosm/gh-workflows/.github/workflows/test_pnpm.yml@3.2.0
with:
working_dir: frontend
Build_On_Ubuntu:
runs-on: ubuntu-latest
needs: [frontend-unit-test]
env:
CI: false
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
run: npm install -g pnpm
- name: Cache pnpm store
uses: actions/cache@v4
id: pnpm-cache
with:
# Caches the pnpm store which is used to save downloaded packages
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('frontend/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install Node.js dependencies
if: steps.pnpm-cache.outputs.cache-hit != 'true'
working-directory: ./frontend
run: pnpm install --frozen-lockfile
- name: Build
working-directory: ./frontend
run: pnpm run build