We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c2b5c5 commit 9ac720dCopy full SHA for 9ac720d
.eslintrc
@@ -13,6 +13,7 @@
13
},
14
"rules": {
15
"no-console": "off",
16
+ "no-eval": "error",
17
"prettier/prettier": "error",
18
"@typescript-eslint/explicit-function-return-type": "off",
19
"@typescript-eslint/ban-ts-ignore": "off",
.github/workflows/nodejs.yml .github/workflows/build.yml
@@ -1,18 +1,17 @@
1
-name: Node CI
+name: Build CI
2
3
on: [push, pull_request]
4
5
jobs:
6
- build:
7
-
+ build_lint:
8
runs-on: ubuntu-latest
9
10
strategy:
11
matrix:
12
node-version: [16.10.x]
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
.github/workflows/main.yml .github/workflows/lint.yml
0 commit comments