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 adab8c3
Showing 1 changed file with 18 additions and 1 deletion.
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

0 comments on commit adab8c3

Please sign in to comment.