Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit 6fa0302

Browse files
authored
Merge pull request #61 from 2Toad/1.6.1
Bump version: 1.6.1
2 parents a69fa25 + 59a4739 commit 6fa0302

File tree

5 files changed

+2073
-419
lines changed

5 files changed

+2073
-419
lines changed

.github/workflows/ci.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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

.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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

77
Teradata for Node.js
88

0 commit comments

Comments
 (0)