Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Breaking: drop node v10/13/v15 (fixes #501) #502

Merged
merged 2 commits into from Jun 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 1 addition & 19 deletions .github/workflows/ci.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16.x, 15.x, 14.x, 13.x, 12.x]
node: [16.x, 14.x, 12.x, "12.22.0"]
include:
mdjermanovic marked this conversation as resolved.
Show resolved Hide resolved
- os: windows-latest
node: "12.x"
Expand All @@ -45,21 +45,3 @@ jobs:
run: npm run build
- name: Run tests
run: npm run unit
testNode10:
name: Test Node 10.x
strategy:
matrix:
os: [ubuntu-latest]
node: [10.x, "10.12.0"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Build commonjs
run: npm run build
- name: Run tests
run: npm run unit:cjs
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -23,7 +23,7 @@
"espree.js"
],
"engines": {
"node": "^10.12.0 || >=12.0.0"
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"repository": "eslint/espree",
"bugs": {
Expand Down