diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cdfd8d6..d0993a3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,10 +22,10 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1 + uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 with: node-version: ${{ matrix.node-version }} @@ -54,4 +54,8 @@ jobs: pwd ls ../ cp -R ../docker-modem ./node_modules/docker-modem - npm test + if [ "${{ matrix.node-version }}" = "14.x" ] || [ "${{ matrix.node-version }}" = "16.x" ] || [ "${{ matrix.node-version }}" = "18.x" ] || [ "${{ matrix.node-version }}" = "19.x" ]; then + npm test -- --grep "buildKit|BuildKit" --invert + else + npm test + fi