Bump applicationinsights from 3.2.1 to 3.3.0 in /ops/services/app_functions/report_stream_batched_publisher/functions #13438
Workflow file for this run
This file contains 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: Check Graphql | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- "**" | |
merge_group: | |
types: | |
- checks_requested | |
push: | |
branches: | |
- main | |
env: | |
NODE_VERSION: 22 | |
defaults: | |
run: | |
working-directory: frontend | |
jobs: | |
check-graphql-types: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{env.NODE_VERSION}} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{env.NODE_VERSION}} | |
- name: Cache yarn | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/yarn | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Node setup | |
run: yarn install --prefer-offline | |
- name: Generate grahpql types | |
run: yarn codegen | |
- name: Lint generated files | |
run: yarn lint:write | |
- name: Check for changes | |
run: | | |
if [[ -z "$(git status --porcelain)" ]]; then | |
exit 0 | |
else | |
echo "Current generated code does not match code in latest commit. try running cd frontend/ && yarn codegen" | |
git diff >> diff.txt | |
exit 1 | |
fi | |
- name: Archive git diff | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: files changed | |
path: frontend/diff.txt | |
retention-days: 7 |