File tree Expand file tree Collapse file tree 5 files changed +624
-1013
lines changed
Expand file tree Collapse file tree 5 files changed +624
-1013
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ pull_request :
5+ branches : ["master"]
6+ push :
7+ branches : ["master"]
8+
9+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ node : [20, 22]
17+
18+ steps :
19+ - name : Checkout
20+ uses : actions/checkout@v4
21+
22+ - name : Setup Node.js
23+ uses : actions/setup-node@v4
24+ with :
25+ node-version : ${{ matrix.node }}
26+ cache : npm
27+
28+ - name : Install deps
29+ run : npm ci
30+
31+ - name : Run tests
32+ run : npm test
33+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22
33Remove garbage params from url (like utm_source)
44
5- [ ![ Build Status ] ( https://travis-ci.org /andre487/node-link-cleaner. svg?branch=master )] ( https://travis-ci.org /andre487/node-link-cleaner )
5+ [ ![ CI ] ( https://github.com /andre487/node-link-cleaner/actions/workflows/ci.yaml/badge. svg )] ( https://github.com /andre487/node-link-cleaner/actions/workflows/ci.yaml )
66
77```
88npm install --save link-cleaner
You can’t perform that action at this time.
0 commit comments