Skip to content

Commit

Permalink
Merge pull request #59 from github/web-test-runner
Browse files Browse the repository at this point in the history
Web test runner
  • Loading branch information
keithamus authored Apr 14, 2022
2 parents cb62e5a + e977426 commit b1e679e
Show file tree
Hide file tree
Showing 13 changed files with 8,902 additions and 1,251 deletions.
4 changes: 0 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
"rules": {
"github/unescaped-html-literal": "off"
},
"globals": {
"chai": false,
"expect": false
},
"env": {
"mocha": true
}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout the project
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js 14.7.0
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14.7.0
node-version: '17'
- name: Install dependencies
run: npm i
- name: Run Node.js Tests
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
*.tsbuildinfo
lib/
coverage/
Loading

0 comments on commit b1e679e

Please sign in to comment.