-
Notifications
You must be signed in to change notification settings - Fork 5
61 lines (52 loc) · 1.41 KB
/
test_frontend.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
51
52
53
54
55
56
57
58
59
60
61
name: Test Frontend Static Build
on:
pull_request:
branches:
- main
- develop
- staging
paths:
- src/frontend/**
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
build:
name: Build JavaScript assets
runs-on: ubuntu-latest
environment:
name: ${{ github.ref_name }}
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Use Node.js 19.x
uses: actions/setup-node@v1
with:
node-version: 19.x
- name: Install yarn
working-directory: ./src/frontend/
run: npm install -g yarn
- name: Cache node_modules
uses: actions/cache@v2
with:
path: ./src/frontend/node_modules
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: Write Environment Variables
id: write_env
working-directory: ./src/frontend/
run: |
echo ${{ vars.FRONTEND_ENV_VARS }} > .env
- name: Install dependencies
working-directory: ./src/frontend/
run: yarn
- name: Generate build
working-directory: ./src/frontend/
run: |
yarn build