generated from energywebfoundation/EWFRepositoryTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (109 loc) · 3.17 KB
/
test.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
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
111
112
113
114
name: Build and test
on: [pull_request]
jobs:
cancel-previous:
name: Cancel Previous Runs
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
build-install:
name: Install dependencies and build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Setup app dependencies
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
run: npm i
- name: Init Lerna
run: npm run init
# - name: Generate keys
# run: npm run keys:generate
- name: Build project
run: npm run build
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
# audit:
# name: Audit package dependencies
# runs-on: ubuntu-latest
# needs: [build-install]
# steps:
# - uses: actions/checkout@v2
# - name: Setup app dependencies
# uses: actions/setup-node@v1
# with:
# node-version: ${{ needs.build-install.outputs.matrix.node-version }}
# - name: Audit package dependencies
# run: npm audit --audit-level=critical
test:
name: Run unit tests
runs-on: ubuntu-latest
needs: [build-install]
# env:
steps:
- uses: actions/checkout@v2
- name: Setup app dependencies
uses: actions/setup-node@v1
with:
node-version: ${{ needs.build-install.outputs.matrix.node-version }}
- uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
# - name: Start containers
# run: docker-compose up -d --build
- name: Run unit tests
run: npm run test
env:
CI: true
# - name: Stop containers
# if: always()
# run: docker-compose down -v
# test-e2e:
# name: Run E2E tests
# runs-on: ubuntu-latest
# needs: [build-install]
# env:
# NODE_ENV: test
# steps:
# - uses: actions/checkout@v2
# - name: Setup app dependencies
# uses: actions/setup-node@v1
# with:
# node-version: ${{ needs.build-install.outputs.matrix.node-version }}
# - uses: actions/cache@v2
# id: restore-build
# with:
# path: ./*
# key: ${{ github.sha }}
# - name: Start containers
# run: docker-compose up -d --build
# - name: Run E2E tests
# run: npm run test:e2e
# - name: Stop containers
# if: always()
# run: docker-compose down -v