Skip to content

Commit

Permalink
Update github-actions-1-demo.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sarathrajsrinivasan authored May 24, 2024
1 parent 560b9ad commit 320e5f6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/github-actions-1-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,22 @@ jobs:

Explore-Matrix:
runs-on: ${{ matrix.os }}
continue-on-error: true # If we dont give this..then even if 1/6 jobs fail then other jobs in progress will be cancelled.
strategy:
fail-fast: false
matrix:
node-version: [14, 16]
os: [ubuntu-latest,windows-latest]
include:
- node-version: 18
operating-system: ubuntu-latest
exclude:
- node-version: 14
operating-system: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '12'
node-version: ${{ matrix.node-version }}
- run: npm install

#####################################################################################################################
Expand Down

0 comments on commit 320e5f6

Please sign in to comment.