-
Notifications
You must be signed in to change notification settings - Fork 26
110 lines (91 loc) · 3.05 KB
/
Copy pathbuild.yml
File metadata and controls
110 lines (91 loc) · 3.05 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: Node CI
# Push tests commits; pull_request tests PR merges
on: [push, pull_request]
jobs:
# Test the build
build:
# Setup
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
# Go
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: Install
run: npm install
- name: Hydrate
run: npx hydrate
env:
CI: true
ARC_MAX_NPM: 10
# Can be deleted soon (pending Arc creds refactor)
- name: Create ~/.aws/credentials
run: mkdir $HOME/.aws && printf "[smallwins]\naws_access_key_id=foo\naws_secret_access_key=bar\nregion=us-west-1\n" > $HOME/.aws/credentials && cat $HOME/.aws/credentials
- name: Test
run: npm test
- name: Notify
uses: homoluctus/slatify@master
# Only fire alert once; may need `&& matrix.node-version == '10.x' && matrix.os == 'ubuntu-latest'` later
if: github.ref == 'refs/heads/master' && failure()
with:
type: ${{ job.status }}
job_name: '*Build*'
url: ${{ secrets.SLACK_WEBHOOK }}
commit: true
token: ${{ secrets.GITHUB_TOKEN }}
# Assuming all that went fine (and it's master): deploy!
deploy:
# Setup
needs: build
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
# Go
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://git@github.com/
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: Create ~/.aws/credentials
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: mkdir $HOME/.aws && printf "[smallwins]\naws_access_key_id=$AWS_ACCESS_KEY_ID\naws_secret_access_key=$AWS_SECRET_ACCESS_KEY\nregion=us-west-1\n" > $HOME/.aws/credentials && cat $HOME/.aws/credentials
- name: Install
run: npm ci
- name: Deploy
run: npm run deploy
env:
CI: true
ARC_MAX_NPM: 10
AWS_PROFILE: smallwins
- name: Notify
uses: homoluctus/slatify@master
if: always()
with:
type: ${{ job.status }}
job_name: '*Deploy*'
url: ${{ secrets.SLACK_WEBHOOK }}
commit: true
token: ${{ secrets.GITHUB_TOKEN }}