Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
32 changes: 1 addition & 31 deletions .github/workflows/NodeCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10, 12]
node-version: [10, 12, 14]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -36,33 +36,3 @@ jobs:
run: npm run build
- name: Test
run: npm run test:ci
test-with-node8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 8
uses: actions/setup-node@v2
with:
node-version: 8
- name: Install Packages
run: |+
npm install
npm install --no-save "eslint@5"
- name: Build
run: npm run build
- name: Test
run: npm run test:ci
test-with-node6:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 6
uses: actions/setup-node@v2
with:
node-version: 6
- name: Install Packages
run: |+
npm install
npm install --no-save "eslint@5" mocha@6.2.2 nyc@14.1.1
- name: Test
run: npm run test:ci
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,28 +51,28 @@
"query"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.3",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"babel-plugin-transform-es2017-object-entries": "0.0.5",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint": "^7.19.0",
"esprima": "~4.0.1",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"pegjs": "~0.10.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0"
"rollup": "^2.38.4",
"rollup-plugin-terser": "^7.0.2"
},
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10"
},
"dependencies": {
"estraverse": "^5.1.0"
"estraverse": "^5.2.0"
}
}
Loading