-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (37 loc) · 959 Bytes
/
web-app-dev.yml
File metadata and controls
37 lines (37 loc) · 959 Bytes
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
name: Web app dev build
on:
push:
branches-ignore:
- 'master'
jobs:
backend:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Test and build linux binary
run: bash Taskfile.sh ci-build-backend
- name: Save binary
uses: actions/upload-artifact@v2
with:
name: backend
path: cmd/hometab/hometab
frontend:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install Node.js 14.x LTS
uses: actions/setup-node@v1
with:
# https://nodejs.org/en/about/releases/
node-version: 14.x
- name: Build frontend
run: bash Taskfile.sh ci-build-frontend
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: frontend
path: frontend/dist