Skip to content

Rename *Controller to *Adapter #18

Rename *Controller to *Adapter

Rename *Controller to *Adapter #18

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [25.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run build
run: npm run build
- name: Run lint
run: npm run lint
- name: Run check-types
run: npm run check-types
- name: Run tests
run: npm test