-
Notifications
You must be signed in to change notification settings - Fork 4
82 lines (82 loc) · 2.33 KB
/
ci-frontend.yaml
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
76
77
78
79
80
81
82
name: CI frontend
on:
workflow_call:
inputs:
called:
required: false
type: string
workflow_dispatch:
inputs:
called:
required: false
type: string
env:
WORKING_DIR: morpheus-client
MORPHEUS_CLIENT_IMAGE_NAME: ${{ vars.MORPHEUS_CLIENT_IMAGE_NAME_REPOSITORY || 'monadicalsas/morpheus-client' }}
jobs:
test-frontend:
runs-on: ubuntu-latest
env:
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_URL: ${{ secrets.SENTRY_URL }}
SENTRY_DSN_CLIENT: ${{ secrets.SENTRY_DSN_CLIENT }}
defaults:
run:
working-directory: ${{ env.WORKING_DIR }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 14
cache: yarn
cache-dependency-path: ./${{ env.WORKING_DIR }}/yarn.lock
- name: install
run: |
yarn install
- name: lint
run: |
yarn run lint
- name: build
run: |
yarn run build
ci-frontend:
runs-on: ubuntu-latest
needs:
- test-frontend
env:
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_URL: ${{ secrets.SENTRY_URL }}
SENTRY_DSN_CLIENT: ${{ secrets.SENTRY_DSN_CLIENT }}
defaults:
run:
working-directory: ${{ env.WORKING_DIR }}
steps:
-
name: Set up QEMU
if: ${{ inputs.called == 'true' }}
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
if: ${{ inputs.called == 'true' }}
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
if: ${{ inputs.called == 'true' }}
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
-
name: Build and push
if: ${{ inputs.called == 'true' }}
uses: docker/build-push-action@v3
with:
context: "{{defaultContext}}:morpheus-client"
build-args: |
BUILD_ENV=copy
push: true
tags: ${{ env.MORPHEUS_CLIENT_IMAGE_NAME }}:${{ github.run_id }}