StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
844 B
46 lines
844 B
name: Node CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- '!*'
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Test Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
node-version: [6.x, 8.x, 10.x, 12.x]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Print Node.js Version
|
|
run: node --version
|
|
|
|
- name: Install Dependencies
|
|
run: npm install
|
|
env:
|
|
CI: true
|
|
|
|
- name: Run "build" step
|
|
run: npm run build --if-present
|
|
env:
|
|
CI: true
|
|
|
|
- name: Run tests
|
|
run: npm test
|
|
env:
|
|
CI: true
|
|
|