Skip to content

Commit 626c0c2

Browse files
committed
Move to GitHub Actions
1 parent 6baf2cc commit 626c0c2

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

.github/workflows/main.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
test:
7+
name: Node.js ${{ matrix.node-version }}
8+
runs-on: ubuntu-latest
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
node-version:
13+
- 14
14+
- 12
15+
- 10
16+
- 8
17+
steps:
18+
- uses: actions/checkout@v2
19+
- uses: actions/setup-node@v1
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
- run: npm install
23+
- run: npm test

.travis.yml

-6
This file was deleted.

test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ test('#14, does not match sub-strings of longer semver-similar strings, respect
7474
// '1.2.31.2.3----RC-SNAPSHOT.12.09.1--..12+788',
7575
'1.2-RC-SNAPSHOT',
7676
'-1.0.3-gamma+b7718',
77-
'+justmeta',
77+
'+justmeta'
7878
// '9.8.7+meta+meta',
7979
// '9.8.7-whatever+meta+meta',
8080
// '99999999999999999999999.999999999999999999.99999999999999999----RC-SNAPSHOT.12.09.1--------------------------------..12'

0 commit comments

Comments
 (0)