Skip to content

Commit

Permalink
#59: no longer test on node <= 8 for eslint does not support node <= 8
Browse files Browse the repository at this point in the history
  • Loading branch information
kaelzhang committed May 22, 2020
1 parent bc90a21 commit 8a8d44a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,8 +1,8 @@
language: node_js
sudo: false
node_js:
- "8"
- "10"
- "12"
- "14"
before_install:
- git --version
4 changes: 1 addition & 3 deletions appveyor.yml
@@ -1,9 +1,7 @@
# Test against this version of Node.js
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: "10"
# - nodejs_version: "12"
- nodejs_version: "12"

# Install scripts. (runs after repo cloning)
install:
Expand Down
18 changes: 9 additions & 9 deletions test/fixtures/cases.js
Expand Up @@ -43,15 +43,15 @@ const cases = [
'src/[x\\]'
],
{
// 'src/[foo]': 1,
// 'src/[foo2\\]': 1,

// // Seems the followings are side-effects,
// // however, we will implement these
// 'src/[foo3\\]': 1,
// 'src/[foo4\\\\]': 1,
// 'src/[foo5\\\\]': 1,
// 'src/[foo6\\\\\\]': 1,
'src/[foo]': 1,
'src/[foo2\\]': 1,

// Seems the followings are side-effects,
// however, we will implement these
'src/[foo3\\]': 1,
'src/[foo4\\\\]': 1,
'src/[foo5\\\\]': 1,
'src/[foo6\\\\\\]': 1,

'src/[bar]': 1,

Expand Down

0 comments on commit 8a8d44a

Please sign in to comment.