-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (71 loc) · 1.89 KB
/
Copy pathbuild.yml
File metadata and controls
71 lines (71 loc) · 1.89 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
name: build
on:
pull_request:
branches:
- 'master'
- 'release/**'
- 'dev'
types: [opened, reopened, edited, synchronize]
paths:
- 'template-kaskadi-lambda.js'
- 'serverless.yml'
- 'layer/**'
- 'test/**'
- 'package.json'
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_KEY_SECRET }}
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
syntax-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm i
- name: serverless syntax check
uses: serverless/github-action@master
with:
args: deploy --noDeploy
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm i
- name: Test
run: npm test
# *** Can use this job instead when tests are properly in place and REPORTER_ID has been added to the repository secrets
# coverage:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Install dependencies
# run: npm i
# - name: Generate coverage report
# run: npm run coverage
# - name: Upload report to Code Climate
# uses: kaskadi/action-cc-reporter@master
# env:
# CC_TEST_REPORTER_ID: ${{ secrets.REPORTER_ID }}
# GIT_BRANCH: ${{ github.base_ref }}
# GIT_COMMIT: ${{ github.sha }}