From d68a1ffdcae00af4b3631059de0c3437c41f8407 Mon Sep 17 00:00:00 2001 From: Szvetlin Tanyi Date: Mon, 30 Mar 2026 16:29:52 +0200 Subject: [PATCH 1/2] test workflow --- .github/workflows/node.js.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 809ff39..217336f 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -5,9 +5,9 @@ name: Node.js CI on: push: - branches: [ master ] + branches: [master] pull_request: - branches: [ master ] + branches: [master] jobs: build: @@ -20,12 +20,11 @@ jobs: # - 16.x CANT do 15+ since node-sass doesn't compile there steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm i -g npm@latest - - run: npm ci --ignore-scipts # avoid "fsevents not accessible from chokidar" error - - run: npm test + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - run: npm i -g npm@latest + - run: npm ci --ignore-scripts # avoid "fsevents not accessible from chokidar" error + - run: npm test From 85c17fb03278fd57f86d333b535dd2632a0988de Mon Sep 17 00:00:00 2001 From: Szvetlin Tanyi Date: Mon, 30 Mar 2026 16:34:07 +0200 Subject: [PATCH 2/2] updated yml --- .github/workflows/node.js.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 217336f..bf3d8ad 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -16,15 +16,13 @@ jobs: strategy: matrix: node-version: - - 14.x - # - 16.x CANT do 15+ since node-sass doesn't compile there + - 20.x steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - run: npm i -g npm@latest - run: npm ci --ignore-scripts # avoid "fsevents not accessible from chokidar" error - run: npm test