Skip to content

Commit

Permalink
chore: update GitHub actions pipeline configuration
Browse files Browse the repository at this point in the history
Selected Node.js 20 and 21 and updated GH actions checkout and setup-node to v4.
  • Loading branch information
Josuto committed Feb 10, 2024
1 parent 45ef764 commit ec7b86d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18.x, 20.x]
node-version: [20.x, 21.x]
steps:
- name: Code Checkout 🛎️
uses: actions/checkout@v3
- name: Checkout Code 🛎️
uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node-version }} 🕸️
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Library Dependencies 💾
Expand All @@ -33,12 +33,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18.x, 20.x, 21.x]
node-version: [20.x, 21.x]
steps:
- name: Code Checkout 🛎️
uses: actions/checkout@v3
- name: Checkout Code 🛎️
uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node-version }} 🕸️
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Library Dependencies 💾
Expand Down

0 comments on commit ec7b86d

Please sign in to comment.