From e00b23c998c8195e1db4c0e8fd61becf92726820 Mon Sep 17 00:00:00 2001 From: Ramona Hartinger Date: Tue, 17 Sep 2024 09:41:01 +0200 Subject: [PATCH] ci: reduced pipelines in order to better test those --- .github/workflows/nodejs.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index f9b3396..f59f7d9 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -7,8 +7,11 @@ 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 @@ -16,6 +19,10 @@ jobs: 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