Skip to content

Commit

Permalink
Merge pull request #63 from bioinformatics-ua/chore/maintenance-2023
Browse files Browse the repository at this point in the history
Update package manifest and dev dependencies
  • Loading branch information
Enet4 authored Sep 30, 2023
2 parents fdc73ef + 3daf59f commit 8d7eec8
Show file tree
Hide file tree
Showing 3 changed files with 1,294 additions and 9,117 deletions.
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 8d7eec8

Please sign in to comment.