forked from hotosm/fAIr
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (65 loc) · 2.01 KB
/
Copy pathfrontend_build_check.yml
File metadata and controls
75 lines (65 loc) · 2.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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@4.0.3
with:
working_dir: frontend
Build_On_Ubuntu:
runs-on: ubuntu-latest
needs: [frontend-unit-test]
env:
CI: false
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install pnpm
run: npm install -g pnpm@9.8.0
- 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
# Build-only checks for PRs. Push happens in docker_publish_image.yml on
# merge to master/stage/develop.
docker-build-dev:
needs: [frontend-unit-test]
uses: hotosm/gh-workflows/.github/workflows/image_build.yml@4.0.3
with:
context: frontend/
dockerfile: Dockerfile.dev
image_name: ghcr.io/${{ github.repository_owner }}/fair/frontend
push: false
docker-build-prod:
needs: [frontend-unit-test]
uses: hotosm/gh-workflows/.github/workflows/image_build.yml@4.0.3
with:
context: frontend/
dockerfile: Dockerfile.prod
image_name: ghcr.io/${{ github.repository_owner }}/fair/frontend
push: false