Skip to content

Commit

Permalink
deps: update babel+eslint+prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
macno committed Mar 12, 2021
1 parent 2e5e7c6 commit c9550a6
Show file tree
Hide file tree
Showing 4 changed files with 13,187 additions and 1,282 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@
],
"parser": "babel-eslint",
"rules": {
"no-undef": "off",
"no-use-before-define": "off",
"no-undef": "warn",
"no-use-before-define": "warn",
"no-console": "off",
"camelcase": "off",
"prettier/prettier": [
"error",
{
"arrowParens": "avoid",
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/node-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: '12'
node-version: '14'
- run: npm i -g npm
- run: npm ci
- run: npm run lint

Expand All @@ -22,10 +23,11 @@ jobs:
needs: lint
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: '12'
node-version: '14'
- run: npm i -g npm
- run: npm ci --no-optional
- run: npm run test:standalone

Expand All @@ -34,9 +36,10 @@ jobs:
needs: test
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: '12'
node-version: '14'
- run: npm i -g npm
- run: npm ci --no-optional
- run: npm run build --if-present
Loading

0 comments on commit c9550a6

Please sign in to comment.