Skip to content

Commit

Permalink
update coverage node version
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoMadera committed Mar 25, 2024
1 parent 661af3b commit fb51370
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/publish-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish Coverage Report

on:
push:
branches: [ main ]
branches: [main]

permissions:
contents: read
Expand All @@ -17,9 +17,19 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"

- name: Install dependencies
run: npm install --force
Expand All @@ -42,4 +52,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v1

0 comments on commit fb51370

Please sign in to comment.