This repository was archived by the owner on Sep 9, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +2073
-419
lines changed
Expand file tree Collapse file tree 5 files changed +2073
-419
lines changed Original file line number Diff line number Diff line change 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 : CI
5+
6+ on :
7+ push :
8+ branches : [ master ]
9+ pull_request :
10+ branches : [ master ]
11+
12+ jobs :
13+ node :
14+
15+ runs-on : ubuntu-latest
16+
17+ strategy :
18+ matrix :
19+ node-version : [8.x, 12.x, 14.x]
20+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21+
22+ steps :
23+ - uses : actions/checkout@v2
24+ - name : Use Node.js ${{ matrix.node-version }}
25+ uses : actions/setup-node@v2
26+ with :
27+ node-version : ${{ matrix.node-version }}
28+ - run : npm ci
29+ legacy-node :
30+
31+ runs-on : ubuntu-latest
32+
33+ strategy :
34+ matrix :
35+ node-version : [6.x, 7.x]
36+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
37+
38+ steps :
39+ - uses : actions/checkout@v2
40+ - name : Use Node.js ${{ matrix.node-version }}
41+ uses : actions/setup-node@v2
42+ with :
43+ node-version : ${{ matrix.node-version }}
44+ - run : npm i
45+ - run : npm run lint
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# node-teradata
22
3- [ ![ GitHub version] ( https://badge.fury.io/gh/2Toad%2Fnode-teradata.svg )] ( https://badge.fury.io/gh/ 2Toad%2Fnode -teradata )
3+ [ ![ GitHub version] ( https://badge.fury.io/gh/2Toad%2Fnode-teradata.svg )] ( https://github.com/ 2Toad/node -teradata/releases )
44[ ![ Downloads] ( https://img.shields.io/npm/dm/node-teradata.svg )] ( https://www.npmjs.com/package/node-teradata )
5- [ ![ Build Status ] ( https://travis-ci.org/2Toad /node-teradata. svg?branch=master )] ( https://travis-ci.org /2Toad/node-teradata )
5+ [ ![ Build status ] ( https://github.com/2toad /node-teradata/actions/workflows/ci.yml/badge. svg )] ( https://github.com /2Toad/node-teradata/actions/workflows/ci.yml )
66
77Teradata for Node.js
88
You can’t perform that action at this time.
0 commit comments