-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (73 loc) · 2.13 KB
/
deploy.yml
File metadata and controls
73 lines (73 loc) · 2.13 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
name: deploy
on:
push:
branches:
- 'master'
- 'release/**'
paths:
- 'serverless.yml'
- 'package.json'
- 'layer/**'
- 'resources/**'
- 'lambdas/**'
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_KEY_SECRET }}
ES_ID: ${{ secrets.ES_ID }}
ES_SECRET: ${{ secrets.ES_SECRET }}
ES_ENDPOINT: ${{ secrets.ES_ENDPOINT }}
COGNITO_USER_POOL_ARN: ${{ secrets.COGNITO_USER_POOL_ARN }}
jobs:
# scan code using CodeQL
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language:
- 'javascript'
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm i
- name: Test
run: npm test
syntax-check:
name: syntax-check
runs-on: ubuntu-latest
if: github.repository != 'kaskadi/template-kaskadi-api' # this is done to skip deploy workflow to avoid the common Serverless API Gateway error when the stack hasn't been deployed yet (template won't be deployed)
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm i
- name: serverless check
uses: serverless/github-action@master
with:
args: deploy --noDeploy
deploy:
runs-on: ubuntu-latest
needs: [analyze, test, syntax-check]
if: github.repository != 'kaskadi/template-kaskadi-api' # this is done to skip deploy workflow to avoid the common Serverless API Gateway error when the stack hasn't been deployed yet (template won't be deployed)
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm i
- name: serverless deploy
uses: serverless/github-action@master
with:
args: deploy -v