Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
update
  • Loading branch information
ota-meshi committed May 9, 2020
commit 9e746116b0eee37667275a954007ebda4cc6ad32
31 changes: 15 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ workflows:
- node-v8
- node-v10
- node-v12
- node-v12-eslint7
- node-v14

version: 2
jobs:
Expand All @@ -32,33 +32,32 @@ jobs:
command: npm test

node-v8:
<<: *node-base
docker:
- image: node:8
node-v10:
<<: *node-base
docker:
- image: node:10
node-v12:
<<: *node-base
docker:
- image: node:12

node-v12-eslint7:
docker:
- image: node:12
steps:
- run:
name: Versions
command: npm version
- checkout
- run:
name: Install eslint@next
name: Install eslint@6
command: |
npm install -D eslint@next
npm install -D eslint@6.0.0
- run:
name: Install dependencies
command: npm install
- run:
name: Test
command: npm test
node-v10:
<<: *node-base
docker:
- image: node:10
node-v12:
<<: *node-base
docker:
- image: node:12
node-v14:
<<: *node-base
docker:
- image: node:14
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"acorn": "^7.1.0",
"babel-eslint": "^10.0.2",
"chai": "^4.1.0",
"eslint": "^6.0.0",
"eslint": "^7.0.0",
"eslint-plugin-eslint-plugin": "^2.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-vue": "file:.",
Expand Down