File tree 3 files changed +28
-12
lines changed
3 files changed +28
-12
lines changed Original file line number Diff line number Diff line change
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
+ - ' 18'
14
+ - ' 16'
15
+ - ' 14'
16
+ - ' 12'
17
+ - ' 10'
18
+ - ' 8'
19
+ - ' 6'
20
+ - ' 4'
21
+ steps :
22
+ - uses : actions/checkout@v3
23
+ - uses : actions/setup-node@v3
24
+ with :
25
+ node-version : ${{ matrix.node-version }}
26
+ - run : npm install
27
+ - run : npm test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# decode-uri-component
2
2
3
- [ ![ Build Status ] ( https://travis-ci.org /SamVerschueren/decode-uri-component.svg?branch=master )] ( https://travis-ci.org/SamVerschueren/decode-uri-component ) [ ![ Coverage Status] ( https://coveralls.io/repos/SamVerschueren/decode-uri-component/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/SamVerschueren/decode-uri-component?branch=master )
3
+ ![ CI ] ( https://github.com /SamVerschueren/decode-uri-component/workflows/CI/badge.svg ) [ ![ Coverage Status] ( https://coveralls.io/repos/SamVerschueren/decode-uri-component/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/SamVerschueren/decode-uri-component?branch=master )
4
4
5
5
> A better [ decodeURIComponent] ( https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent )
6
6
You can’t perform that action at this time.
0 commit comments