forked from stylelint/stylelint
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (47 loc) · 1.39 KB
/
testing.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
name: Testing
on:
push:
branches:
- main
- 'dependabot/**'
pull_request:
branches:
- '**'
env:
FORCE_COLOR: 2
jobs:
test:
name: Test on Node.js ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [12, 14, 16]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
# https://github.com/npm/cli/issues/4341
# https://github.com/actions/setup-node/issues/411
- name: Workaround for npm installation on Windows
if: ${{ matrix.os == 'windows-latest' }}
run: npm install --global [email protected]
- name: Install latest npm
run: npm install --global npm@latest
- name: Install dependencies
run: npm ci
- name: Test
run: npm run jest
if: "!(startsWith(matrix.os, 'ubuntu') && matrix.node == 16)"
- name: Test with coverage
run: npm run jest -- --coverage
if: startsWith(matrix.os, 'ubuntu') && matrix.node == 16
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
if: startsWith(matrix.os, 'ubuntu') && matrix.node == 16
with:
files: ./.coverage/lcov.info