Add animation delay to allow accurate transform animation on safari #42
Workflow file for this run
This file contains hidden or 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: Check Commits | |
| on: | |
| pull_request: | |
| types: [opened, reopened, unlabeled, synchronize] | |
| permissions: | |
| contents: read | |
| deployments: write | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| check-commits: | |
| name: Check Commits | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/check-commits | |
| with: | |
| os: ubuntu-latest | |
| node-version: 22 | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |