forked from open-telemetry/opentelemetry-sandbox-web-js
-
Notifications
You must be signed in to change notification settings - Fork 1
83 lines (68 loc) · 1.99 KB
/
unit-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
name: Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
node-tests:
strategy:
fail-fast: false
matrix:
node_version: [ 14, 16, 18 ]
runs-on: ubuntu-latest
env:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- run: npm install -g npm@latest
if: ${{ matrix.node_version == '18' || matrix.node_version == '20' }}
# [email protected] drops support for Node.js v14 and v16
- run: npm install -g npm@"<10.0.0"
if: ${{ matrix.node_version == '14' || matrix.node_version == '16' }}
- name: Bootstrap
run: |
npm install
node common/scripts/install-run-rush.js update
- name: Build 🔧
run: |
npm run rebuild --verbose
- name: Unit tests
run: |
# TODO(legendecas): webpack https://stackoverflow.com/questions/69692842/error-message-error0308010cdigital-envelope-routinesunsupported
if [ "${{ matrix.node_version }}" = "18" ]; then
export NODE_OPTIONS=--openssl-legacy-provider
fi
npm run test --verbose
node-windows-tests:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
node_version: [ 18 ]
env:
NPM_CONFIG_UNSAFE_PERM: true
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
# [email protected] drops support for Node.js v14 and v16
- run: npm install -g npm@latest
- name: Bootstrap
run: |
npm install
node common/scripts/install-run-rush.js update
- name: Build 🔧
run: |
npm run rebuild --verbose
- name: Unit tests
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
npm run test --verbose