diff --git a/.github/workflows/insiders.yml b/.github/workflows/insiders.yml index a10117f44..d8f6b87b5 100644 --- a/.github/workflows/insiders.yml +++ b/.github/workflows/insiders.yml @@ -30,7 +30,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18.15.x + node-version: 18.x cache: npm - name: Run Tests (macOS, windows) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b12775ed9..9506a555e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,22 +22,3 @@ jobs: with: version: ${{ matrix.version }} - check: - if: always() - runs-on: ubuntu-latest - name: Status Check - needs: [ test ] - steps: - - name: Test Matrix Result - run: | - echo result = ${{ needs.test.result }} - - name: Status Check - success - if: ${{ needs.test.result == 'success' }} - run: | - echo "All tests successfully completed!" - exit 0 - - name: Status Check - failure - if: ${{ needs.test.result != 'success' }} - run: | - echo "Status Check failed!" - exit 1 diff --git a/.github/workflows/template-main.yaml b/.github/workflows/template-main.yaml index c643c80c5..5b3d409fc 100644 --- a/.github/workflows/template-main.yaml +++ b/.github/workflows/template-main.yaml @@ -27,7 +27,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18.15.x + node-version: 18.x cache: npm - name: Run Tests (macOS, windows)