Skip to content

⬆️ Bump react-hook-form from 7.49.2 to 7.49.3 #6

⬆️ Bump react-hook-form from 7.49.2 to 7.49.3

⬆️ Bump react-hook-form from 7.49.2 to 7.49.3 #6

Workflow file for this run

name: Checks
on:
pull_request:
branches:
- main
concurrency:
group: checks-${{ github.ref }}
cancel-in-progress: true
jobs:
changed:
runs-on: ubuntu-22.04
outputs:
frontend: ${{ steps.needs.outputs.frontend }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Paths Changes Filter
uses: dorny/[email protected]
id: changes
with:
filters: |
frontend:
- 'apps/frontend/**/*'
- 'packages/config/**/*'
- 'packages/core/**/*'
- 'package.json'
- '.tool-versions'
- name: Output Needs
id: needs
run: |
echo "frontend=${{ steps.changes.outputs.frontend == 'true' }}" >> $GITHUB_OUTPUT
frontend:
runs-on: ubuntu-22.04
needs: changed
if: needs.changed.outputs.frontend == 'true'
permissions:
contents: read
steps:
- name: Checkout
uses: actions/[email protected]
- name: mise action
uses: jdx/[email protected]
- name: Setup Bun
uses: oven-sh/[email protected]
- name: Create dot env file
shell: bash
run: |
touch .env.local
echo "NEXT_PUBLIC_GOOGLE_ANALYTICS_ID=DUMMY" >> .env.local
echo "NEXT_PUBLIC_STRIPE_CHECKOUT_URL=https://donate.stripe.com" >> .env.local
echo "NEXT_PUBLIC_GRAPHQL_ENDPOINT=tatsutakein.jp" >> .env.local
echo "NEXT_PUBLIC_SITE_NAME=https://tatsutakein.jp" >> .env.local
working-directory: ./apps/frontend
- name: Clean install using bun
shell: bash
run: bun install --frozen-lockfile
- name: Build
run: bun run build --filter=frontend