-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (46 loc) · 1.52 KB
/
pull_request.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
name: Node.js CI
on:
pull_request:
branches: [ master ]
env:
environment: dev
organization: bcgov
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: checkout the repo and building the Backend
uses: actions/checkout@v2
- name : building the backend
run: |
cd ./lambda
npm install
cd -
- uses: hashicorp/setup-terraform@v1
with:
terraform_version: ${{ env.TF_VERSION }}
cli_config_credentials_token: ${{ secrets.TFC_TEAM_TOKEN }}
- name: Deploying back-end using terraform
run: |
cat <<EOF > backend.hcl
organization = "${{ env.organization }}"
workspaces { name = "${{ secrets.LICENCEPLATE }}-${{ env.environment }}-backend" }
EOF
terraform init -backend-config=backend.hcl
terraform plan
- name: Building front-end and deploying Frontend using terraform
run: |
terraform output > ./client/.env
cd ./client
npm install
CI=false npm run build
cat <<EOF > backend.hcl
organization = "${{ env.organization }}"
workspaces { name = "${{ secrets.LICENCEPLATE }}-${{ env.environment }}-backend" }
EOF
terraform init-backend-config=backend.hcl
terraform plan