From 97b235fd343efdc8fa267e7d6ca07b5b4cb06465 Mon Sep 17 00:00:00 2001 From: Dominic Saadi Date: Thu, 26 Oct 2023 11:07:01 -0400 Subject: [PATCH] chore(api-server): remove server survey tests in CI (#9348) I added a new job to CI in https://github.com/redwoodjs/redwood/pull/9325 that tested all the different serve entry points. It was a bit flakey so I increased its timeouts in https://github.com/redwoodjs/redwood/pull/9336. Unfortunately it's still a bit flakey. Right now when these tests fail they're creating confusion, and most of our changes lately don't affect these tests. They're still valuable to me locally, and at least right now I'm the only one making changes to api-server. So I'll just leave the tasks directory as is and remove them from CI till I do a bit more testing on their flakiness. --- .github/workflows/ci.yml | 41 ---------------------------------------- 1 file changed, 41 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfae09db3117..e809bd381b3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -573,44 +573,3 @@ jobs: steps: - run: echo "RSC smoke tests mock" - - server-tests: - needs: check - - name: ๐Ÿ“ก๐Ÿ” server tests / node 18 latest - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: โฌข Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: 18 - - - name: ๐Ÿˆ Set up yarn cache - uses: ./.github/actions/set-up-yarn-cache - - - name: ๐Ÿˆ Yarn install - run: yarn install --inline-builds - env: - GITHUB_TOKEN: ${{ github.token }} - - - name: ๐Ÿ”จ Build - run: yarn build - - - name: ๐Ÿงช Test - run: yarn jest server.test.ts - working-directory: ./tasks/server-tests - env: - REDWOOD_DISABLE_TELEMETRY: 1 - - server-tests-docs: - needs: only-doc-changes - if: needs.only-doc-changes.outputs.only-doc-changes == 'true' - - name: ๐Ÿ“ก๐Ÿ” server tests / node 18 latest - runs-on: ubuntu-latest - - steps: - - run: echo "Only doc changes"