Skip to content

✨ feat(calendar): improve calendar component styles and structure #1859

✨ feat(calendar): improve calendar component styles and structure

✨ feat(calendar): improve calendar component styles and structure #1859

Workflow file for this run

name: Pull Requests
on:
workflow_dispatch:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
jobs:
test:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 1
- uses: pnpm/action-setup@v3
with:
version: 9
- run: pnpm install --frozen-lockfile
- run: SKIP_ENV_VALIDATION=true pnpm lint
- run: SKIP_ENV_VALIDATION=true NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }} pnpm build --turbopack
qodana:
needs: test
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/[email protected]
with:
upload-result: true
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
automerge:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
needs: test
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}