Skip to content

chore: bump actions and switch to sha (#1764) #355

chore: bump actions and switch to sha (#1764)

chore: bump actions and switch to sha (#1764) #355

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source
# code and run tests across different versions of browsers
name: Browsers CI
on:
push:
branches: [ main, 4.x.x ]
pull_request:
branches: [ main, 4.x.x ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
browser-name:
- chromium
- firefox
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: ${{ matrix.browser-name }}
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
- run: npm ci
- run: npx playwright install --with-deps
- run: npm run build --if-present
- run: npm run test-chrome -- --browsers ${{ matrix.browser-name }}