Skip to content

Commit

Permalink
Chore(github): Updated node.js workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fvdm authored Sep 15, 2023
1 parent 7d91014 commit 53f6bb6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: set-matrix
run: echo "::set-output name=matrix::$(curl -s https://raw.githubusercontent.com/fvdm/nodejs-versions/main/lts-current.json)"
run: echo "matrix=$(curl -s https://raw.githubusercontent.com/fvdm/nodejs-versions/main/lts-current.json)" >> $GITHUB_OUTPUT
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}

Expand All @@ -26,7 +26,7 @@ jobs:
matrix:
node-version: ${{ fromJson(needs.lts_versions.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Test on Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand All @@ -38,7 +38,6 @@ jobs:
DOTEST_NOCOV: ${{ secrets.DOTEST_NOCOV }}
DOTEST_MINCOV: ${{ secrets.DOTEST_MINCOV }}
DOTEST_COVFUNCTIONS: 100
- run: npm audit --production
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
if: always()
Expand Down

0 comments on commit 53f6bb6

Please sign in to comment.