Skip to content

Commit

Permalink
Updated pull_request.yaml with node and actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mareknovotny authored Dec 11, 2024
1 parent 560bf95 commit 20a836c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
unit:
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -33,14 +33,14 @@ jobs:
integration:
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -53,11 +53,11 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x

- name: Install packages
run: npm ci
Expand Down

0 comments on commit 20a836c

Please sign in to comment.