Skip to content

Commit 46aff81

Browse files
committed
[actions] use node/install instead of node/run; use codecov action
1 parent c3d434d commit 46aff81

9 files changed

+259
-0
lines changed

.editorconfig

+7
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,17 @@ block_comment_start = /*
1212
block_comment = *
1313
block_comment_end = */
1414

15+
[.nycrc]
16+
indent_style = tab
17+
1518
[*.md]
1619
indent_style = space
1720
indent_size = 4
1821

22+
[*.yml]
23+
indent_style = space
24+
indent_size = 2
25+
1926
[readme.markdown]
2027
indent_size = off
2128
max_line_length = off

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
coverage/
2+
.nyc_output/

.github/workflows/node-4+.yml

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: 'Tests: node.js'
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
matrix:
7+
runs-on: ubuntu-latest
8+
outputs:
9+
latest: ${{ steps.set-matrix.outputs.requireds }}
10+
minors: ${{ steps.set-matrix.outputs.optionals }}
11+
steps:
12+
- uses: ljharb/actions/node/matrix@main
13+
id: set-matrix
14+
with:
15+
preset: '>=4'
16+
17+
latest:
18+
needs: [matrix]
19+
name: 'latest minors'
20+
runs-on: ubuntu-latest
21+
22+
strategy:
23+
fail-fast: false
24+
matrix: ${{ fromJson(needs.matrix.outputs.latest) }}
25+
26+
steps:
27+
- uses: actions/checkout@v2
28+
- uses: ljharb/actions/node/install@main
29+
name: 'nvm install ${{ matrix.node-version }} && npm install'
30+
with:
31+
node-version: ${{ matrix.node-version }}
32+
- run: npm run tests-only
33+
- uses: codecov/codecov-action@v1
34+
35+
minors:
36+
needs: [matrix, latest]
37+
name: 'non-latest minors'
38+
continue-on-error: true
39+
if: ${{ !github.head_ref || !startsWith(github.head_ref, 'renovate') }}
40+
runs-on: ubuntu-latest
41+
42+
strategy:
43+
fail-fast: false
44+
matrix: ${{ fromJson(needs.matrix.outputs.minors) }}
45+
46+
steps:
47+
- uses: actions/checkout@v2
48+
- uses: ljharb/actions/node/install@main
49+
name: 'nvm install ${{ matrix.node-version }} && npm install'
50+
with:
51+
node-version: ${{ matrix.node-version }}
52+
- run: npm run tests-only
53+
- uses: codecov/codecov-action@v1
54+
55+
node:
56+
name: 'node 4+'
57+
needs: [latest, minors]
58+
runs-on: ubuntu-latest
59+
steps:
60+
- run: 'echo tests completed'

.github/workflows/node-iojs.yml

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: 'Tests: node.js (io.js)'
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
matrix:
7+
runs-on: ubuntu-latest
8+
outputs:
9+
latest: ${{ steps.set-matrix.outputs.requireds }}
10+
minors: ${{ steps.set-matrix.outputs.optionals }}
11+
steps:
12+
- uses: ljharb/actions/node/matrix@main
13+
id: set-matrix
14+
with:
15+
preset: 'iojs'
16+
17+
latest:
18+
needs: [matrix]
19+
name: 'latest minors'
20+
runs-on: ubuntu-latest
21+
22+
strategy:
23+
fail-fast: false
24+
matrix: ${{ fromJson(needs.matrix.outputs.latest) }}
25+
26+
steps:
27+
- uses: actions/checkout@v2
28+
- uses: ljharb/actions/node/install@main
29+
name: 'nvm install ${{ matrix.node-version }} && npm install'
30+
with:
31+
node-version: ${{ matrix.node-version }}
32+
skip-ls-check: true
33+
- run: npm run tests-only
34+
- uses: codecov/codecov-action@v1
35+
36+
minors:
37+
needs: [matrix, latest]
38+
name: 'non-latest minors'
39+
continue-on-error: true
40+
if: ${{ !github.head_ref || !startsWith(github.head_ref, 'renovate') }}
41+
runs-on: ubuntu-latest
42+
43+
strategy:
44+
fail-fast: false
45+
matrix: ${{ fromJson(needs.matrix.outputs.minors) }}
46+
47+
steps:
48+
- uses: actions/checkout@v2
49+
- uses: ljharb/actions/node/install@main
50+
name: 'nvm install ${{ matrix.node-version }} && npm install'
51+
with:
52+
node-version: ${{ matrix.node-version }}
53+
skip-ls-check: true
54+
- run: npm run tests-only
55+
- uses: codecov/codecov-action@v1
56+
57+
node:
58+
name: 'io.js'
59+
needs: [latest, minors]
60+
runs-on: ubuntu-latest
61+
steps:
62+
- run: 'echo tests completed'

.github/workflows/node-pretest.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: 'Tests: pretest/posttest'
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
pretest:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: ljharb/actions/node/install@main
12+
name: 'nvm install lts/* && npm install'
13+
with:
14+
node-version: 'lts/*'
15+
- run: npm run pretest
16+
17+
posttest:
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: ljharb/actions/node/install@main
23+
name: 'nvm install lts/* && npm install'
24+
with:
25+
node-version: 'lts/*'
26+
- run: npm run posttest

.github/workflows/node-zero.yml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: 'Tests: node.js (0.x)'
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
matrix:
7+
runs-on: ubuntu-latest
8+
outputs:
9+
stable: ${{ steps.set-matrix.outputs.requireds }}
10+
unstable: ${{ steps.set-matrix.outputs.optionals }}
11+
steps:
12+
- uses: ljharb/actions/node/matrix@main
13+
id: set-matrix
14+
with:
15+
preset: '0.x'
16+
17+
stable:
18+
needs: [matrix]
19+
name: 'stable minors'
20+
runs-on: ubuntu-latest
21+
22+
strategy:
23+
fail-fast: false
24+
matrix: ${{ fromJson(needs.matrix.outputs.stable) }}
25+
26+
steps:
27+
- uses: actions/checkout@v2
28+
- uses: ljharb/actions/node/install@main
29+
name: 'nvm install ${{ matrix.node-version }} && npm install'
30+
with:
31+
node-version: ${{ matrix.node-version }}
32+
cache-node-modules-key: node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
33+
skip-ls-check: true
34+
- run: npm run tests-only
35+
- uses: codecov/codecov-action@v1
36+
37+
unstable:
38+
needs: [matrix, stable]
39+
name: 'unstable minors'
40+
continue-on-error: true
41+
if: ${{ !github.head_ref || !startsWith(github.head_ref, 'renovate') }}
42+
runs-on: ubuntu-latest
43+
44+
strategy:
45+
fail-fast: false
46+
matrix: ${{ fromJson(needs.matrix.outputs.unstable) }}
47+
48+
steps:
49+
- uses: actions/checkout@v2
50+
- uses: ljharb/actions/node/install@main
51+
name: 'nvm install ${{ matrix.node-version }} && npm install'
52+
with:
53+
node-version: ${{ matrix.node-version }}
54+
cache-node-modules-key: node_modules-${{ github.workflow }}-${{ github.action }}-${{ github.run_id }}
55+
skip-ls-check: true
56+
- run: npm run tests-only
57+
- uses: codecov/codecov-action@v1
58+
59+
node:
60+
name: 'node 0.x'
61+
needs: [stable, unstable]
62+
runs-on: ubuntu-latest
63+
steps:
64+
- run: 'echo tests completed'

.github/workflows/rebase.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Automatic Rebase
2+
3+
on: [pull_request_target]
4+
5+
jobs:
6+
_:
7+
name: "Automatic Rebase"
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: ljharb/rebase@master
14+
env:
15+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Require “Allow Edits”
2+
3+
on: [pull_request_target]
4+
5+
jobs:
6+
_:
7+
name: "Require “Allow Edits”"
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: ljharb/require-allow-edits@main

.nycrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"all": true,
3+
"check-coverage": false,
4+
"reporter": ["text-summary", "text", "html", "json"],
5+
"exclude": [
6+
"bin/import-or-require.js",
7+
"coverage",
8+
"example",
9+
"test"
10+
]
11+
}

0 commit comments

Comments
 (0)