File tree Expand file tree Collapse file tree 3 files changed +4
-19
lines changed Expand file tree Collapse file tree 3 files changed +4
-19
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
test :
9
- runs-on : ubuntu-18 .04
9
+ runs-on : ubuntu-20 .04
10
10
strategy :
11
11
matrix :
12
12
name :
13
- - Node.js 0.6
14
13
- Node.js 0.8
15
14
- Node.js 0.10
16
15
- Node.js 0.12
33
32
- Node.js 17.x
34
33
35
34
include :
36
- - name : Node.js 0.6
37
- node-version : " 0.6"
38
-
39
- npm-rm : nyc
40
-
41
35
- name : Node.js 0.8
42
36
node-version : " 0.8"
43
37
@@ -119,21 +113,11 @@ jobs:
119
113
- name : Install Node.js ${{ matrix.node-version }}
120
114
shell : bash -eo pipefail -l {0}
121
115
run : |
122
- if [[ "${{ matrix.node-version }}" == 0.6* ]]; then
123
- sudo apt-get install g++-4.8 gcc-4.8 libssl1.0-dev
124
- export CC=/usr/bin/gcc-4.8
125
- export CXX=/usr/bin/g++-4.8
126
- fi
127
116
nvm install --default ${{ matrix.node-version }}
128
117
if [[ "${{ matrix.node-version }}" == 0.* && "$(cut -d. -f2 <<< "${{ matrix.node-version }}")" -lt 10 ]]; then
129
118
nvm install --alias=npm 0.10
130
119
nvm use ${{ matrix.node-version }}
131
- if [[ "$(npm -v)" == 1.1.* ]]; then
132
- nvm exec npm npm install -g [email protected]
133
- ln -fs "$(which npm)" "$(dirname "$(nvm which npm)")/npm"
134
- else
135
- sed -i '1s;^.*$;'"$(printf '#!%q' "$(nvm which npm)")"';' "$(readlink -f "$(which npm)")"
136
- fi
120
+ sed -i '1s;^.*$;'"$(printf '#!%q' "$(nvm which npm)")"';' "$(readlink -f "$(which npm)")"
137
121
npm config set strict-ssl false
138
122
fi
139
123
dirname "$(nvm which ${{ matrix.node-version }})" >> "$GITHUB_PATH"
Original file line number Diff line number Diff line change 1
1
2.x
2
2
===
3
3
4
+ * Drop support for Node.js 0.6
4
5
* Remove ` I'mateapot ` export; use ` ImATeapot ` instead
5
6
6
7
2021-11-14 / 1.8.1
Original file line number Diff line number Diff line change 28
28
"nyc" : " 15.1.0"
29
29
},
30
30
"engines" : {
31
- "node" : " >= 0.6 "
31
+ "node" : " >= 0.8 "
32
32
},
33
33
"scripts" : {
34
34
"lint" : " eslint . && node ./scripts/lint-readme-list.js" ,
You can’t perform that action at this time.
0 commit comments