Skip to content

WEBDEV-8507: Migrate field-parsers into elements #283

WEBDEV-8507: Migrate field-parsers into elements

WEBDEV-8507: Migrate field-parsers into elements #283

Workflow file for this run

name: App CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Cache Playwright browsers
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium
timeout-minutes: 6
- name: Run tests
run: npm run test
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}