fix(tile): float footer arrow when footer is empty #2641
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: Validate PRs | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- edited | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: 'npm' | |
- run: npm i semantic-release @changesets/read --prefer-offline | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
const { validate } = await import('${{ github.workspace }}/scripts/validate-prs.js'); | |
await validate({ context }); |