Disable windows for now #1290
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| - master-next | ||
| env: | ||
| node-version: '22.x' | ||
| jobs: | ||
| precheck: | ||
| name: Check jobs to run | ||
| runs-on: ubuntu-24.04 | ||
| outputs: | ||
| affected-typescript-resolver-files: ${{ steps.affected.outputs.typescript-resolver-files }} | ||
| affected-typescript-resolver-files-e2e: ${{ steps.affected.outputs.typescript-resolver-files-e2e }} | ||
| affected-operation-location-migration: ${{ steps.affected.outputs.operation-location-migration }} | ||
| affected-operation-location-migration-e2e: ${{ steps.affected.outputs.operation-location-migration-e2e }} | ||
| steps: | ||
| - name: Check out repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: ${{ env.node-version }} | ||
| cache: yarn | ||
| cache-dependency-path: '**/yarn.lock' | ||
| - name: Install deps | ||
| run: yarn install --prefer-offline | ||
| - name: Check affected projects | ||
| id: affected | ||
| run: | | ||
| echo "typescript-resolver-files=$(./tools/ci/bin/check-affected.sh lib typescript-resolver-files origin/master)" >> $GITHUB_OUTPUT | ||
| echo "typescript-resolver-files-e2e=$(./tools/ci/bin/check-affected.sh lib typescript-resolver-files-e2e origin/master)" >> $GITHUB_OUTPUT | ||
| echo "operation-location-migration=$(./tools/ci/bin/check-affected.sh lib operation-location-migration origin/master)" >> $GITHUB_OUTPUT | ||
| echo "operation-location-migration-e2e=$(./tools/ci/bin/check-affected.sh lib operation-location-migration-e2e origin/master)" >> $GITHUB_OUTPUT | ||
| cat $GITHUB_OUTPUT | ||
| typescript-resolver-files: | ||
| needs: precheck | ||
| if: ${{ needs.precheck.outputs.affected-typescript-resolver-files == 'true' }} | ||
| uses: ./.github/workflows/projects/typescript-resolver-files.yml | ||
| typescript-resolver-files-e2e: | ||
| needs: precheck | ||
| if: ${{ needs.precheck.outputs.affected-typescript-resolver-files == 'true' || needs.precheck.outputs.affected-typescript-resolver-files-e2e == 'true' }} | ||
| uses: ./.github/workflows/projects/typescript-resolver-files-e2e.yml | ||
| operation-location-migration: | ||
| needs: precheck | ||
| if: ${{ needs.precheck.outputs.affected-operation-location-migration == 'true' }} | ||
| uses: ./.github/workflows/projects/operation-location-migration.yml | ||
| operation-location-migration-e2e: | ||
| needs: precheck | ||
| if: ${{ needs.precheck.outputs.affected-operation-location-migration == 'true' || needs.precheck.outputs.affected-operation-location-migration-e2e == 'true' }} | ||
| uses: ./.github/workflows/projects/operation-location-migration-e2e.yml | ||