File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 7
7
jobs :
8
8
test :
9
9
runs-on : ubuntu-latest
10
+ strategy :
11
+ matrix :
12
+ node-version : [14.x, 16.x, 18.x] # NOTE: Keep in sync with README.
13
+ # See Node.js release schedule: https://nodejs.org/en/about/releases/
14
+ # - v14 EOL: Apr 30 2023
15
+ # - v16 EOL: Apr 30 2024
16
+ # - v18 EOL: Apr 30 2025
10
17
steps :
11
18
- uses : actions/checkout@v3
19
+ - name : Use Node.js ${{ matrix.node-version }}
20
+ uses : actions/setup-node@v3
21
+ with :
22
+ node-version : ${{ matrix.node-version }}
12
23
- run : yarn install
13
24
- run : npm run test
14
25
lint :
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ LSIF indexer for TypeScript and JavaScript.
10
10
npm install -g @sourcegraph/lsif-typescript
11
11
```
12
12
13
+ Currently, Node v14, Node v16 and Node v18 are supported. <!-- Source of truth: .github/workflows/ci.yml -->
14
+
13
15
### Indexing a TypeScript project
14
16
15
17
Navigate to the project root, containing ` tsconfig.json ` .
You can’t perform that action at this time.
0 commit comments