diff --git a/.github/workflows/test_package_updates.yml b/.github/workflows/test_package_updates.yml deleted file mode 100644 index 5da334e339..0000000000 --- a/.github/workflows/test_package_updates.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: Package updates - -on: - push: - branches: - - master - paths: - - '*/**/package.json' - - '!*/**/node_modules/package.json' - - 'package.json' - - '!node_modules/package.json' - pull_request: - branches: - - master - - rel/** - paths: - - '*/**/package.json' - - '!*/**/node_modules/package.json' - - 'package.json' - - '!node_modules/package.json' - -jobs: - unit-test-all: - runs-on: ubuntu-latest - - strategy: - fail-fast: false - matrix: - node-version: [18.x, 20.x, 22.x] - - steps: - - uses: actions/checkout@v3 - with: - ref: ${{ github.event.pull_request.head.sha }} - - - name: Setup node:${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - - - name: Fetch Base Ref - run: git fetch origin $GITHUB_BASE_REF - - - name: Remove yarn.lock to simulate downstream installs - run: rm yarn.lock - - - name: Install Packages - env: - # Workaround for https://github.com/nodejs/node/issues/51555 - DISABLE_V8_COMPILE_CACHE: '1' - run: yarn install - - - name: Unit test all - run: yarn unit-test - env: - BITGOJS_TEST_PASSWORD: ${{ secrets.BITGOJS_TEST_PASSWORD }}