Skip to content

Commit

Permalink
Update minimum version on Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
piranna committed Nov 19, 2023
1 parent 1b762c6 commit 549c801
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
branches: [ main ]

jobs:
build-in-maintenance-versions:
build-in-maintained-versions:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16]
node-version: [18]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -28,7 +28,7 @@ jobs:
cache: 'npm'
node-version: ${{ matrix.node-version }}

- run: npm ci
- run: npm ci --verbose
- run: npm test

build:
Expand All @@ -45,7 +45,7 @@ jobs:
cache: 'npm'
node-version: latest

- run: npm ci
- run: npm ci --verbose
- run: npm test -- --coverageReporters=json-summary

- name: "Get total tests coverage"
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
cache: 'npm'
node-version: latest

- run: npm ci
- run: npm ci --verbose
- run: npm run docs

- uses: cpina/[email protected]
Expand Down

0 comments on commit 549c801

Please sign in to comment.