Skip to content

Commit

Permalink
Merge branch 'chore/maintenance-2023' into release/5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Enet4 committed Oct 2, 2023
2 parents b496028 + 3daf59f commit cb345cc
Show file tree
Hide file tree
Showing 15 changed files with 8,815 additions and 7,238 deletions.
1 change: 0 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"@typescript-eslint"
],
"env": {
"commonjs": true,
"es6": true
},
"globals": {
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,24 @@ jobs:

strategy:
matrix:
node-version: [10.x, 16.x, 18.x]
node-version: [16, lts/*, latest]
# Minimum supported version, latest LTS, and latest stable

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
# only lint on current LTS version
- if: ${{ matrix.node-version == '16.x' }}
- if: ${{ matrix.node-version == 'lts/*' }}
run: npm run strictCheck
- run: npm run cover
# use LTS version to report to coveralls
- name: Coveralls
uses: coverallsapp/github-action@master
if: ${{ matrix.node-version == '16.x' }}
if: ${{ matrix.node-version == 'lts/*' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

Loading

0 comments on commit cb345cc

Please sign in to comment.