Skip to content

Commit 372b1ec

Browse files
author
Ryan Munro
committed
more builds
1 parent 7f77cc6 commit 372b1ec

File tree

2 files changed

+23
-30
lines changed

2 files changed

+23
-30
lines changed

.github/workflows/nodejs.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,17 @@
1-
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
4-
name: Node.js CI
5-
1+
name: test
62
on:
73
push:
8-
branches: [ master ]
4+
branches: [master]
95
pull_request:
10-
branches: [ master ]
11-
6+
branches: [master]
127
jobs:
138
build:
149
strategy:
1510
matrix:
16-
platform: [ubuntu-latest, macos-latest, windows-latest]
11+
platform: [ubuntu-latest, windows-latest]
1712
node-version: [4.x, 5.x, 6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x]
18-
python-version: [ 2.7, 3.6, 3.7, 3.8]
19-
# 2.6, 3.2, 3.3, 3.4, 3.5,
13+
python-version: [2.7, 3.6, 3.7, 3.8]
14+
# @TODO 2.6
2015
runs-on: ${{ matrix.platform }}
2116
steps:
2217
- uses: actions/checkout@v2

.travis.yml

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ dist: bionic
33
os:
44
- "linux"
55
env:
6-
- NODE_VERSION="14"
7-
- NODE_VERSION="13"
8-
- NODE_VERSION="12"
9-
- NODE_VERSION="11"
10-
- NODE_VERSION="10"
11-
- NODE_VERSION="9"
12-
- NODE_VERSION="8"
13-
- NODE_VERSION="7.5"
14-
- NODE_VERSION="6.1"
15-
- NODE_VERSION="5.11"
16-
- NODE_VERSION="4.4"
6+
# - NODE_VERSION="14"
7+
# - NODE_VERSION="13"
8+
# - NODE_VERSION="12"
9+
# - NODE_VERSION="11"
10+
# - NODE_VERSION="10"
11+
# - NODE_VERSION="9"
12+
# - NODE_VERSION="8"
13+
# - NODE_VERSION="7.5"
14+
# - NODE_VERSION="6.1"
15+
# - NODE_VERSION="5.11"
16+
# - NODE_VERSION="4.4"
1717
python:
18-
- "3.8"
19-
- "3.7"
20-
- "3.6"
21-
- "3.5"
22-
- "3.4"
23-
- "2.7"
18+
# - "3.8"
19+
# - "3.7"
20+
# - "3.6"
21+
# - "3.5"
22+
# - "3.4"
23+
# - "2.7"
2424
jobs:
2525
include:
2626
# - @TODO PYTHON_VERSION="3.3"
@@ -76,8 +76,6 @@ before_install:
7676
- which node
7777
- python -V
7878
- node --version
79-
80-
# choco install nodejs
8179
install:
8280
- npm install -d
8381
before_script:

0 commit comments

Comments
 (0)