-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (48 loc) · 1.33 KB
/
CI.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
60
# Workflow for continuous integration
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
NODE_VERSION: '10.13'
directory: './greenfield'
bundle-path: './greenfield/dist'
code-coverage-path: './greenfield/coverage'
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
- name: install packages
run:
npm ci
working-directory: ${{ env.directory }}
- name: build
run: npm run build -- --prod
working-directory: ${{ env.directory }}
- name: e2e test
run: npm run e2e
working-directory: ${{ env.directory }}
- name: unit tests
run: npm run test -- --no-watch --no-progress
working-directory: ${{ env.directory }}
- name: code coverage
run: npm run test -- --no-watch --code-coverage
working-directory: ${{ env.directory }}
- name: Archive bundle
uses: actions/upload-artifact@v2
with:
name: bundle
path: ${{ env.bundle-path }}
- name: Archive code coverage results
uses: actions/upload-artifact@v2
with:
name: code-coverage-report
path: ${{ env.code-coverage-path }}