Skip to content

refactor!: remove CookieConsent component in v25 (#356) #955

refactor!: remove CookieConsent component in v25 (#356)

refactor!: remove CookieConsent component in v25 (#356) #955

Workflow file for this run

name: Validation
on:
push:
branches: ['main', '1.3', '2.0', '2.1', '2.2', '2.3', '24.4', '24.5', '24.6', '24.7', '24.8', '24.9']
paths-ignore:
- 'README.md'
- '.github/ISSUE_TEMPLATE/*'
pull_request:
branches: ['main', '1.3', '2.0', '2.1', '2.2', '2.3', '24.4', '24.5', '24.6', '24.7', '24.8', '24.9']
paths-ignore:
- 'README.md'
- '.github/ISSUE_TEMPLATE/*'
jobs:
test:
name: Validation
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout Project Code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install chromium --with-deps
- name: Validate
run: npm run validate
- name: Test
run: npm run test