Skip to content

Commit 411abae

Browse files
committed
switch to Github CI.. update dates
1 parent 1868be8 commit 411abae

6 files changed

Lines changed: 33 additions & 10 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
2+
3+
name: Node.js CI
4+
5+
on:
6+
push:
7+
branches: [ master ]
8+
pull_request:
9+
branches: [ master ]
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
16+
strategy:
17+
matrix:
18+
node-version: [10, 12, 14, 16, 17]
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v2
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
cache: 'npm'
27+
- run: npm ci
28+
- run: npm run test:ci

.travis.yml

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

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-21 Lloyd Brookes <75pound@gmail.com>
3+
Copyright (c) 2015-22 Lloyd Brookes <75pound@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,6 @@ Old browser (adds `window.sortArray`):
200200

201201
* * *
202202

203-
&copy; 2015-21 Lloyd Brookes \<75pound@gmail.com\>.
203+
&copy; 2015-22 Lloyd Brookes \<75pound@gmail.com\>.
204204

205205
Isomorphic test suite by [test-runner](https://github.com/test-runner-js/test-runner) and [web-runner](https://github.com/test-runner-js/web-runner). Documented by [jsdoc-to-markdown](https://github.com/jsdoc2md/jsdoc-to-markdown).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,6 @@ Old browser (adds `window.sortArray`):
225225

226226
* * *
227227

228-
&copy; 2015-21 Lloyd Brookes \<75pound@gmail.com\>.
228+
&copy; 2015-22 Lloyd Brookes \<75pound@gmail.com\>.
229229

230230
Isomorphic test suite by [test-runner](https://github.com/test-runner-js/test-runner) and [web-runner](https://github.com/test-runner-js/web-runner). Documented by [jsdoc-to-markdown](https://github.com/jsdoc2md/jsdoc-to-markdown).

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"node": ">=10"
2525
},
2626
"scripts": {
27-
"test": "npm run dist && npm run test:esm && web-runner test/*.mjs",
27+
"test": "npm run dist && npm run test:ci",
28+
"test:ci": "npm run test:esm && web-runner test/*.mjs",
2829
"test:esm": "esm-runner test/*.mjs --view.hide-skips",
2930
"docs": "jsdoc2md -c jsdoc.conf -t README.hbs index.mjs -d 3 > README.md",
3031
"dist": "rollup -c"

0 commit comments

Comments
 (0)