Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 11 additions & 15 deletions .github/workflows/quality.js.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node

name: Quality CI

on:
Expand All @@ -10,19 +8,17 @@ on:

jobs:
quality:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
- run: npm install
- run: npm install -g codecov
- run: npm run coverage

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12 # ⚠️ Still works, but consider updating this soon
- run: npm cache clean --force
- run: npm install
- run: npm install -g codecov
- run: npm run coverage
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"debug": "4.3.4",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.22.0",
Expand All @@ -37,8 +38,8 @@
"proxyquire": "^2.1.3",
"rewire": "^4.0.1",
"semantic-release": "^18.0.0",
"sinon-chai": "^3.5.0",
"sinon": "^9.2.4"
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0"
},
"dependencies": {
"accept-language": "^3.0.18",
Expand All @@ -50,18 +51,18 @@
"got": "^11.8.5",
"helmet": "^3.23.3",
"jsonwebtoken": "^9.0.0",
"log4js": "^6.4.1",
"tsd": "^0.20.0",
"log4js": "6.9.1",
"q": "^1.5.1",
"rsa-pem-from-mod-exp": "^0.8.4",
"tsd": "^0.20.0",
"underscore": "^1.10.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines" : {
"node" : ">=12.0.0"
"engines": {
"node": ">=12.0.0"
}
}
}