Skip to content

Commit 4027f87

Browse files
committed
migrate to GitHub Actions (#3586)
1 parent 910799c commit 4027f87

File tree

5 files changed

+11
-170
lines changed

5 files changed

+11
-170
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
with:
1919
path: tmp
2020
key: tmp ${{ matrix.script }}
21-
- shell: bash
21+
- name: Perform tests
22+
shell: bash
2223
run: |
23-
git clone --branch v1.5.2 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
24-
. ~/.nvs/nvs.sh
25-
nvs --version
26-
nvs add node/$NODE
27-
nvs use node/$NODE
24+
git clone --branch v1.5.3 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
25+
. ~/.nvs/nvs.sh --version
26+
nvs add $NODE
27+
nvs use $NODE
2828
node --version
2929
npm --version --no-update-notifier
3030
npm install --no-audit --no-optional --no-save --no-update-notifier

.github/workflows/ufuzz.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
steps:
1414
- uses: actions/checkout@v1
15-
- shell: bash
15+
- name: Perform fuzzing
16+
shell: bash
1617
run: |
17-
git clone --branch v1.5.2 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
18-
. ~/.nvs/nvs.sh
19-
nvs --version
18+
git clone --branch v1.5.3 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
19+
. ~/.nvs/nvs.sh --version
2020
nvs add node
2121
nvs use node
2222
node --version

.travis.yml

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

appveyor.yml

Lines changed: 1 addition & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,5 @@
11
build: off
2-
cache:
3-
- tmp
42
matrix:
53
fast_finish: true
6-
environment:
7-
matrix:
8-
- NODE: 0.10
9-
TYPE: compress
10-
- NODE: 0.10
11-
TYPE: mocha
12-
- NODE: 0.10
13-
TYPE: release/benchmark
14-
- NODE: 0.10
15-
TYPE: release/jetstream
16-
- NODE: 0.12
17-
TYPE: compress
18-
- NODE: 0.12
19-
TYPE: mocha
20-
- NODE: 0.12
21-
TYPE: release/benchmark
22-
- NODE: 0.12
23-
TYPE: release/jetstream
24-
- NODE: 4
25-
TYPE: compress
26-
- NODE: 4
27-
TYPE: mocha
28-
- NODE: 4
29-
TYPE: release/benchmark
30-
- NODE: 4
31-
TYPE: release/jetstream
32-
- NODE: 6
33-
TYPE: compress
34-
- NODE: 6
35-
TYPE: mocha
36-
- NODE: 6
37-
TYPE: release/benchmark
38-
- NODE: 6
39-
TYPE: release/jetstream
40-
- NODE: 8
41-
TYPE: compress
42-
- NODE: 8
43-
TYPE: mocha
44-
- NODE: 8
45-
TYPE: release/benchmark
46-
- NODE: 8
47-
TYPE: release/jetstream
48-
- NODE: 10
49-
TYPE: compress
50-
- NODE: 10
51-
TYPE: mocha
52-
- NODE: 10
53-
TYPE: release/benchmark
54-
- NODE: 10
55-
TYPE: release/jetstream
56-
- NODE: latest
57-
TYPE: compress
58-
- NODE: latest
59-
TYPE: mocha
60-
- NODE: latest
61-
TYPE: release/benchmark
62-
- NODE: latest
63-
TYPE: release/jetstream
64-
install:
65-
- git clone --branch v1.5.2 --depth 1 https://github.com/jasongin/nvs.git %LOCALAPPDATA%\nvs
66-
- set PATH=%LOCALAPPDATA%\nvs;%PATH%
67-
- nvs --version
68-
- nvs add node/%NODE%
69-
- nvs use node/%NODE%
70-
- node --version
71-
- npm --version --no-update-notifier
72-
- npm install --no-audit --no-optional --no-save --no-update-notifier
734
test_script:
74-
- node test/%TYPE%
5+
- echo No longer in use

test/ufuzz/travis.js

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

0 commit comments

Comments
 (0)