Skip to content

Commit b1e679e

Browse files
authored
Merge pull request #59 from github/web-test-runner
Web test runner
2 parents cb62e5a + e977426 commit b1e679e

13 files changed

+8902
-1251
lines changed

.eslintrc.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
"rules": {
1313
"github/unescaped-html-literal": "off"
1414
},
15-
"globals": {
16-
"chai": false,
17-
"expect": false
18-
},
1915
"env": {
2016
"mocha": true
2117
}

.github/workflows/nodejs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
runs-on: macos-latest
1313
steps:
1414
- name: Checkout the project
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
- name: Cache node modules
17-
uses: actions/cache@v2
17+
uses: actions/cache@v3
1818
with:
1919
path: ~/.npm
2020
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
2121
restore-keys: |
2222
${{ runner.os }}-node-
2323
- name: Use Node.js 14.7.0
24-
uses: actions/setup-node@v1
24+
uses: actions/setup-node@v3
2525
with:
26-
node-version: 14.7.0
26+
node-version: '17'
2727
- name: Install dependencies
2828
run: npm i
2929
- name: Run Node.js Tests

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
*.tsbuildinfo
33
lib/
4+
coverage/

0 commit comments

Comments
 (0)