Skip to content

Commit

Permalink
ci: reduced pipelines in order to better test those
Browse files Browse the repository at this point in the history
  • Loading branch information
rH4rtinger committed Sep 17, 2024
1 parent fe61e46 commit e00b23c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,22 @@ jobs:
build:
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
os: [macos-latest, ubuntu-latest, windows-latest]
# node-version: [18.x, 20.x, 22.x]
# os: [macos-latest, ubuntu-latest, windows-latest]
# TODO use all versions and os
node-version: [22.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Print Docker Version
run: docker --version

- name: Check Node.js version
run: node -v

Expand Down

0 comments on commit e00b23c

Please sign in to comment.