There was an error while loading. Please reload this page.
1 parent ec807b1 commit 7e0169bCopy full SHA for 7e0169b
.github/workflows/nodejs.yml
@@ -9,18 +9,16 @@ jobs:
9
steps:
10
- uses: actions/checkout@v2
11
- name: Use Node.js ${{ matrix.node-version }}
12
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v2
13
with:
14
node-version: ${{ matrix.node-version }}
15
- name: npm install, build, and test
16
run: |
17
npm install doctest standard --save-dev
18
- npx doctest **/*.js || true # TODO: error: Line 1: Unexpected token >>
+ npx doctest **/*.js
19
npx standard
20
npm ci
21
npm run build --if-present
22
- # TODO: Remove the next line when #539 is fixed.
23
- rm Linear-Algebra/test/test.js String/LevenshteinDistance.test.js
24
npm test
25
env:
26
CI: true
0 commit comments