-
Notifications
You must be signed in to change notification settings - Fork 0
122 lines (108 loc) · 2.9 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
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
115
116
117
118
119
120
121
122
name: build
on:
push:
tags-ignore:
- '*'
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Node.js ${{ matrix.node-version }} | ${{ matrix.os }} | ${{ matrix.arch }}
timeout-minutes: 5
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
fail-fast: false
matrix:
# os:
# - ubuntu-latest
# - macOS-latest
# - windows-latest
# arch:
# - x64
# node-version:
# - 18
# experimental:
# - false
# send_coverage:
# - false
include:
- os: ubuntu-latest
arch: x64
node-version: 20 # latest
experimental: true
node_minimum: false
- os: macOS-latest
arch: x64
node-version: 20 # latest
experimental: true
send_coverage: false
- os: windows-latest
arch: x64
node-version: 20 # latest
experimental: true
send_coverage: false
- os: ubuntu-latest
node-version: 18 # minimum
arch: x64
experimental: false
send_coverage: true
- os: macOS-latest
arch: x64
node-version: 18 # minimum
experimental: false
send_coverage: false
- os: windows-latest
arch: x64
node-version: 18 # minimum
experimental: false
send_coverage: false
steps:
- name: Setting up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build info
run: |
node --version
npm --version
- name: Cloning repository
uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Installing dependencies
run: npm ci
- name: Running tests
continue-on-error: ${{ matrix.experimental }}
run: npm test
- name: Uploading code coverage report
if: >
(
success() &&
matrix.send_coverage &&
github.event_name == 'push' &&
github.repository_owner == 'JimiC' &&
github.actor != 'dependabot[bot]'
)
uses: paambaati/codeclimate-action@v5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
- name: Uploading code coverage artifact
if: >
(
success() &&
matrix.send_coverage &&
github.event_name == 'pull_request' &&
github.actor != 'dependabot[bot]'
)
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: coverage/lcov.info
retention-days: 1