forked from mystiq/hydrogen-web
tune linting so it doesn't produce errors anymore and enable in CI
This commit is contained in:
parent
1f17edc248
commit
fa7e24fed7
5 changed files with 12 additions and 4 deletions
1
.eslintignore
Normal file
1
.eslintignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
src/matrix/storage/memory
|
|
@ -10,6 +10,8 @@ module.exports = {
|
||||||
},
|
},
|
||||||
"rules": {
|
"rules": {
|
||||||
"no-console": "off",
|
"no-console": "off",
|
||||||
"no-empty": "off"
|
"no-empty": "off",
|
||||||
|
"no-prototype-builtins": "off",
|
||||||
|
"no-unused-vars": "warn",
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
||||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
||||||
|
|
||||||
name: Unit tests
|
name: Code checks
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -20,9 +20,12 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Run unit tests
|
- name: Install
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- run: npm install --also=dev
|
- run: npm install --also=dev
|
||||||
|
- name: Unit tests
|
||||||
- run: npm test
|
- run: npm test
|
||||||
|
- name: Lint
|
||||||
|
- run: npm run lint-ci
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -7,3 +7,4 @@ bundle.js
|
||||||
target
|
target
|
||||||
lib
|
lib
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
|
.eslintcache
|
|
@ -7,7 +7,8 @@
|
||||||
"doc": "doc"
|
"doc": "doc"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint src/",
|
"lint": "eslint --cache src/",
|
||||||
|
"lint-ci": "eslint src/",
|
||||||
"test": "impunity --entry-point src/main.js --force-esm-dirs lib/ src/",
|
"test": "impunity --entry-point src/main.js --force-esm-dirs lib/ src/",
|
||||||
"start": "node scripts/serve-local.js",
|
"start": "node scripts/serve-local.js",
|
||||||
"build": "node --experimental-modules scripts/build.mjs",
|
"build": "node --experimental-modules scripts/build.mjs",
|
||||||
|
|
Loading…
Reference in a new issue