-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (56 loc) · 1.46 KB
/
build.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
name: build
on:
pull_request:
branches:
- 'master'
- 'release/**'
- 'dev'
types: [opened, reopened, edited, synchronize]
paths:
- 'src/**'
- 'test/**'
- 'package.json'
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
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 }}