fix(deps): update dependency @sentry/node to v10 #4563
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: Integration | |
| on: | |
| push: | |
| branches-ignore: | |
| - master | |
| pull_request: | |
| branches-ignore: | |
| - master | |
| jobs: | |
| Action: | |
| name: Test Inspector Action | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Make changes to schema | |
| run: | | |
| sed -i '/title: String @deprecated(reason: "No more used")/d' ./example/schemas/schema.graphql | |
| sed -i 's/createdAt: String/createdAt: String!/g' ./example/schemas/schema.graphql | |
| sed -i 's/modifiedAt: String/modifiedAt: String!/g' ./example/schemas/schema.graphql | |
| sed -i 's/post: Post!/post(id: ID): Post!/g' ./example/schemas/schema.graphql | |
| cat ./example/schemas/schema.graphql | |
| - name: Run Inspector | |
| uses: ./ | |
| id: inspector | |
| with: | |
| experimental_merge: false | |
| schema: 'master:example/schemas/schema.graphql' | |
| rules: | | |
| suppressRemovalOfDeprecatedField | |
| ./example/rules/custom-rule.js | |
| - name: Validate result | |
| if: steps.inspector.outputs.changes != 4 | |
| run: echo 'Expected 4 changes received ${{ steps.inspector.outputs.changes }}' && exit 1 |