Skip to content

Bump @babel/types from 7.23.6 to 7.24.0 #172

Bump @babel/types from 7.23.6 to 7.24.0

Bump @babel/types from 7.23.6 to 7.24.0 #172

Workflow file for this run

name: Playwright
on:
push:
branches: ["main", "next-release"]
pull_request:
branches: ["main", "master"]
workflow_dispatch:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test:e2e