Skip to content

fix(deps): update graphql-tools monorepo #29870

fix(deps): update graphql-tools monorepo

fix(deps): update graphql-tools monorepo #29870

name: Check test project fixture
on:
pull_request:
types: [opened, synchronize, reopened, labeled, unlabeled]
# Cancel in-progress runs of this workflow.
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-test-project-fixture:
name: Check test project fixture
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up job
if: "!contains(github.event.pull_request.labels.*.name, 'fixture-ok')"
uses: ./.github/actions/set-up-job
- name: Rebuild test-project fixture
if: "!contains(github.event.pull_request.labels.*.name, 'fixture-ok')"
run: yarn rebuild-test-project-fixture
env:
REDWOOD_DISABLE_TELEMETRY: 1
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: Check for changed files
if: "!contains(github.event.pull_request.labels.*.name, 'fixture-ok')"
run: |
if [ $(git status --porcelain | wc -l) -gt 0 ]; then
echo 'Updating the test project fixture caused files to change'
echo 'Please run `yarn rebuild-test-project-fixture` locally and commit any changes'
echo
echo 'Deleted files:'
git status --porcelain | grep '^ D ' | awk '{print " " $2}'
echo
echo 'Modified files:'
git status --porcelain | grep '^ M ' | awk '{print " " $2}'
echo
echo 'Untracked files:'
git status --porcelain | grep '^?? ' | awk '{print " " $2}'
echo
exit 1;
fi