From e8576dc01663929e3086c9380eee2a7dda7a4437 Mon Sep 17 00:00:00 2001 From: tabcat Date: Tue, 9 Jan 2024 12:53:06 -0600 Subject: [PATCH] ci: disable browser tests --- .github/workflows/ci.yml | 47 ++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7065b2ce..77b64285 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,32 +50,33 @@ jobs: with: flags: node - test-chrome: - if: github.event.pull_request.draft == false - needs: check - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest] # [windows-latest, ubuntu-latest, macos-latest] - node: [18] - fail-fast: true - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - cache: 'npm' - - run: npm ci - - run: npm run test:chrome - env: - W3_TOKEN: ${{secrets.W3_TOKEN}} - - uses: codecov/codecov-action@v3 - with: - flags: node + # test-chrome: + # if: github.event.pull_request.draft == false + # needs: check + # runs-on: ${{ matrix.os }} + # strategy: + # matrix: + # os: [ubuntu-latest] # [windows-latest, ubuntu-latest, macos-latest] + # node: [18] + # fail-fast: true + # steps: + # - uses: actions/checkout@v2 + # - uses: actions/setup-node@v3 + # with: + # node-version: ${{ matrix.node }} + # cache: 'npm' + # - run: npm ci + # - run: npm run test:chrome + # env: + # W3_TOKEN: ${{secrets.W3_TOKEN}} + # - uses: codecov/codecov-action@v3 + # with: + # flags: node release: runs-on: ubuntu-latest - needs: [test-node, test-chrome] + # needs: [test-node, test-chrome] + needs: [test-node] if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.event.pull_request.draft == false steps: - uses: google-github-actions/release-please-action@v3