Skip to content

Commit

Permalink
Run CI/CD only on LTS version
Browse files Browse the repository at this point in the history
  • Loading branch information
calvin-cronoslabs committed Jul 25, 2023
1 parent 1ae15b0 commit 11d852f
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/health.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,11 @@ on:

jobs:
build:
name: Build (Node.js v${{ matrix.node }})
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node: [8, 10, 12, 14, 16, 18]

steps:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- uses: actions/checkout@v2

Expand All @@ -33,16 +28,12 @@ jobs:
npm run build
test:
name: Unit Test (Node.js v${{ matrix.node }})
name: Unit Test
runs-on: ubuntu-latest
strategy:
matrix:
node: [8, 10, 12, 14, 16, 18]

steps:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
node-version: 18

- uses: actions/checkout@v2

Expand Down

0 comments on commit 11d852f

Please sign in to comment.