-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (34 loc) · 1.11 KB
/
main.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
name: CD
on:
# Triggers the workflow on pull request events but only for the main branch
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
# Runs on self hosted runner
runs-on: self-hosted
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Build yapper-be
- name: Get inside yapper-be(NodeJS) and install dependencies
run: |
cd yapper-be
npm install
serve:
# Runs only after build is completed successfully
needs: build
# Runs on self hosted runner
runs-on: self-hosted
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Build yapper-be
- name: Server NodeJs yapper-be
run: |
cd yapper-be
node server.js