Skip to content

feat: Merge videos generated by playwright into a single mp4 #120

feat: Merge videos generated by playwright into a single mp4

feat: Merge videos generated by playwright into a single mp4 #120

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
integration:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Setup ffmpeg
uses: FedericoCarboni/setup-ffmpeg@v3
- name: Install Dependencies
run: npm ci
- name: Test
run: npm test
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}