Update dependency postcss to v8.4.35 - autoclosed #66
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: 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/paths-filter@v3 | |
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_SITE_NAME=\"tatsutakein.jp\"" >> .env.local | |
echo "NEXT_PUBLIC_SITE_URL=\"https://tatsutakein.jp\"" >> .env.local | |
working-directory: ./apps/frontend | |
- name: Clean install using bun | |
shell: bash | |
run: bun install | |
- name: Build | |
run: bun run build --filter=frontend |