chore(deps): bump tar from 7.5.2 to 7.5.9 #205
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: V&V (Visual) | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Nightly at 03:30 UTC | |
| - cron: '30 3 * * *' | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled] | |
| branches: [master] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| vv: | |
| name: Visual Verification (Remotion + OCR) | |
| runs-on: ubuntu-latest | |
| if: >- | |
| ${{ | |
| github.event_name == 'workflow_dispatch' || | |
| github.event_name == 'schedule' || | |
| ( | |
| github.event_name == 'pull_request' && | |
| contains(github.event.pull_request.labels.*.name, 'run-vv') | |
| ) | |
| }} | |
| env: | |
| HUSKY: 0 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Remotion browser | |
| run: npx remotion browser install | |
| - name: Run V&V suite | |
| run: npx vitest run tests/vv/**/* |