-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (25 loc) · 821 Bytes
/
make.yml
File metadata and controls
33 lines (25 loc) · 821 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
name: Develop docker test
on: [ push, pull_request ]
env:
REGISTRY: docker.pkg.github.com/hose1021/devhub_front
REGISTRY_HOST: docker.pkg.github.com
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache Yarn
uses: actions/cache@v2
with:
path: node_modules
key: yarn-${{ hashFiles('yarn.lock') }}
- name: Docker pull
run: make docker-pull
- name: Docker build
run: make docker-build
- name: Yarn install
run: make yarn-install
- name: Docker up
run: make docker-up
- name: Yarn build
run: make yarn-build