From af90f0a2c8e5ca23e800e030ffe87fc302558df5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Gro=C3=9Fklaus?= Date: Sat, 16 Jul 2022 16:48:21 +0200 Subject: [PATCH] wip --- .github/workflows/node.js.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index c25ab1e7..1827d77a 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,6 +1,3 @@ -# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - name: Node.js CI on: @@ -9,17 +6,13 @@ on: pull_request: branches: [main, "4.0.0"] -defaults: - run: - working-directory: / - jobs: build: runs-on: ubuntu-latest strategy: matrix: - node-version: [16.7] + node-version: [16.7, 17.x, 18.x] steps: - uses: actions/checkout@v3 @@ -29,4 +22,4 @@ jobs: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run lint - - run: npm run test + - run: npm test