Skip to content

docs: add components diagram #4314

docs: add components diagram

docs: add components diagram #4314

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
jobs:
test:
name: Run Tests
runs-on: ubuntu-22.04 # latest version 24 has incompatibility issues (playwright)
steps:
- name: Git Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- uses: actions/setup-node@5e2628c959b9ade56971c0afcebbe5332d44b398
with:
node-version: 22
- name: Install gcds-components
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Build repo
run: npm run build
- name: Run tests
run: npm run test