forked from vscode-icons/vscode-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
118 lines (109 loc) · 3.14 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
115
116
117
118
name: Tests
on:
push:
tags-ignore:
- '*'
branches:
- 'master'
- 'main'
pull_request:
branches:
- 'master'
- 'main'
workflow_dispatch:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Node.js ${{ matrix.node }} | ${{ matrix.os }} | ${{ matrix.arch }}
strategy:
max-parallel: 3
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
# https://code.visualstudio.com/updates
# https://www.electronjs.org/releases/stable
# https://github.com/microsoft/vscode/blob/main/package.json#L138
node:
- 18.15.0 # vscode >= 1.82.0
- 16.17.1 # vscode >= 1.78.0 < 1.82.0
- 16.14.2 # vscode >= 1.71.0 < 1.78.0
arch:
- x64
experimental:
- false
include:
- os: ubuntu-latest
node: node # latest node
arch: x64
experimental: true
- os: macos-latest
node: node # latest node
arch: x64
experimental: true
- os: windows-latest
node: node # latest node
arch: x64
experimental: true
- os: ubuntu-latest
node: lts/* # latest lts node
arch: x64
experimental: true
- os: macos-latest
node: lts/* # latest lts node
arch: x64
experimental: true
- os: windows-latest
node: lts/* # latest lts node
arch: x64
experimental: true
runs-on: ${{ matrix.os }}
steps:
- name: Setting up Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Cloning repository
uses: actions/checkout@v3
with:
fetch-depth: 5
- name: Installing Dependencies
run: npm ci
# - name: Setup tmate session
# if: (matrix.os == 'ubuntu-latest' && matrix.node == '16.14.2')
# uses: mxschmitt/action-tmate@v3
- name: Test
continue-on-error: ${{ matrix.experimental }}
run: npm test
- name: Uploading code coverage report
if: >
(
success() &&
matrix.os == 'ubuntu-latest' &&
matrix.node == '16.14.2' &&
github.event_name == 'push' &&
github.repository_owner == 'vscode-icons' &&
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.os == 'ubuntu-latest' &&
matrix.node == '16.14.2' &&
github.event_name == 'pull_request' &&
github.repository_owner == 'vscode-icons' &&
github.actor != 'dependabot[bot]'
)
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: coverage/lcov.info
retention-days: 1