File tree Expand file tree Collapse file tree 3 files changed +32
-6
lines changed Expand file tree Collapse file tree 3 files changed +32
-6
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ push :
5
+ branches : [main]
6
+ pull_request :
7
+ branches : [main]
8
+ workflow_dispatch :
9
+
10
+ jobs :
11
+ test :
12
+ runs-on : ubuntu-latest
13
+
14
+ strategy :
15
+ matrix :
16
+ node_version : [18, 20, 21]
17
+
18
+ steps :
19
+ - name : Checkout
20
+ uses : actions/checkout@v4
21
+
22
+ - name : Use Node.js ${{ matrix.node_version }}
23
+ uses : actions/setup-node@v4
24
+ with :
25
+ node-version : ${{ matrix.node_version }}
26
+ cache : npm
27
+
28
+ - name : Install dependencies
29
+ run : npm ci
30
+
31
+ - name : Run tests
32
+ run : npm run test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Turndown
2
2
3
- [ ![ Build Status] ( https://travis-ci.org/domchristie/turndown.svg?branch=master )] ( https://travis-ci.org/domchristie/turndown )
4
-
5
3
Convert HTML into Markdown with JavaScript.
6
4
7
5
## Project Updates
You can’t perform that action at this time.
0 commit comments