Skip to content

Commit

Permalink
more builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Munro committed May 7, 2020
1 parent 7f77cc6 commit 372b1ec
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 30 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

name: test
on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]

branches: [master]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest, windows-latest]
node-version: [4.x, 5.x, 6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x]
python-version: [ 2.7, 3.6, 3.7, 3.8]
# 2.6, 3.2, 3.3, 3.4, 3.5,
python-version: [2.7, 3.6, 3.7, 3.8]
# @TODO 2.6
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
Expand Down
36 changes: 17 additions & 19 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ dist: bionic
os:
- "linux"
env:
- NODE_VERSION="14"
- NODE_VERSION="13"
- NODE_VERSION="12"
- NODE_VERSION="11"
- NODE_VERSION="10"
- NODE_VERSION="9"
- NODE_VERSION="8"
- NODE_VERSION="7.5"
- NODE_VERSION="6.1"
- NODE_VERSION="5.11"
- NODE_VERSION="4.4"
# - NODE_VERSION="14"
# - NODE_VERSION="13"
# - NODE_VERSION="12"
# - NODE_VERSION="11"
# - NODE_VERSION="10"
# - NODE_VERSION="9"
# - NODE_VERSION="8"
# - NODE_VERSION="7.5"
# - NODE_VERSION="6.1"
# - NODE_VERSION="5.11"
# - NODE_VERSION="4.4"
python:
- "3.8"
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# - "3.8"
# - "3.7"
# - "3.6"
# - "3.5"
# - "3.4"
# - "2.7"
jobs:
include:
# - @TODO PYTHON_VERSION="3.3"
Expand Down Expand Up @@ -76,8 +76,6 @@ before_install:
- which node
- python -V
- node --version

# choco install nodejs
install:
- npm install -d
before_script:
Expand Down

0 comments on commit 372b1ec

Please sign in to comment.