diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8eb2679dc86a..5f11d7ff13da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -455,44 +455,3 @@ jobs: runs-on: ${{ matrix.os }} steps: - run: echo "Only doc changes" - - 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"