Skip to content

Commit

Permalink
with retro
Browse files Browse the repository at this point in the history
  • Loading branch information
bguerout committed Dec 9, 2023
1 parent ee04b4a commit 2fb0447
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 37 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x, 18.x ]
node-version: [ 16.x, 17.x, 18.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -17,6 +17,23 @@ jobs:
- run: npm run lint
- run: npm run build

retro:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 10.x, 12.x, 14.x, 15.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: rm -r package-lock.json
- run: npm install
- run: npm test
- run: npm run lint
- run: npm run build

coverage:
runs-on: ubuntu-latest
steps:
Expand Down
40 changes: 4 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"eslint-plugin-mocha": "10.2.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "3.1.0",
"slow-stream": "0.0.4",
Expand Down

0 comments on commit 2fb0447

Please sign in to comment.