-
Notifications
You must be signed in to change notification settings - Fork 10
61 lines (52 loc) · 1.5 KB
/
test-frontend-builds.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: Ma Cantine frontend CI
on: [push]
jobs:
frontend-build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
pip install -r requirements.txt
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Vue 2 install
working-directory: ./frontend
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm install
- name: Vue 2 build
working-directory: ./frontend
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm run build --if-present
- name: Vue 2 test
working-directory: ./frontend
run: |
npm run test
- name: Vue 3 build
working-directory: ./
env:
SECRET: test
ALLOWED_HOSTS: localhost
REDIS_URL: redis://localhost:6379/0
STATICFILES_STORAGE: django.contrib.staticfiles.storage.StaticFilesStorage
DEFAULT_FILE_STORAGE: django.core.files.storage.FileSystemStorage
run: |
python3 manage.py collectstatic --noinput
cd ./2024-frontend
npm install
npm run build --if-present