Skip to content

chore(deps-dev): bump brace-expansion from 5.0.6 to 5.0.7 #230

chore(deps-dev): bump brace-expansion from 5.0.6 to 5.0.7

chore(deps-dev): bump brace-expansion from 5.0.6 to 5.0.7 #230

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- browser: chromium
projects: --project=chromium --project=mobile-chrome
- browser: firefox
projects: --project=firefox
- browser: webkit
projects: --project=webkit --project=mobile-safari
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ matrix.browser }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
playwright-${{ runner.os }}-${{ matrix.browser }}-
- name: Install Playwright browser
run: npx playwright install --with-deps ${{ matrix.browser }}
- name: Build
run: npm run build:ci
- name: Check formatting
run: npm run check-format
- name: Run tests
run: npm run type-check-tests && npx playwright test ${{ matrix.projects }}
- name: Upload test results
if: failure()
uses: actions/upload-artifact@v7
with:
name: playwright-report-${{ matrix.browser }}
path: playwright-report/
retention-days: 7
audit:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Audit dependencies for vulnerabilities
run: npm audit --audit-level=high