Skip to content

Merge pull request #135 from YutaUra/renovate/all-minor-patch #807

Merge pull request #135 from YutaUra/renovate/all-minor-patch

Merge pull request #135 from YutaUra/renovate/all-minor-patch #807

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@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
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@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.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@7eb71af1ae8e30d970ea5512d23fd2f4b0eae44c # v2.56.0
if: always()
with:
token: ${{ steps.app-token.outputs.token }}