Skip to content

fix(deps): update all non-major dependencies #712

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #712

Workflow file for this run

name: check_PR
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
id: app-token
with:
app-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
token: ${{ steps.app-token.outputs.token }}
- uses: ./.github/actions/setup
with:
token: ${{ steps.app-token.outputs.token }}
bot-app-slug: ${{ steps.app-token.outputs.app-slug }}
- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
with:
distribution: "temurin"
java-version: "17"
- run: pnpm install
- run: pnpm firebase setup:emulators:firestore
- run: pnpm exec turbo run check:fix test
- if: failure()
run: |
find . -name "*.log" -not -path "*/node_modules/*" -exec sh -c 'echo "\n==================== $0 ===================="; cat $0; echo "\n"' {} \;
- uses: int128/update-generated-files-action@757376506709ed3d87f14a80ca28a98736d52236 # v2.55.0
if: always()
with:
token: ${{ steps.app-token.outputs.token }}