26 lines
No EOL
470 B
YAML
26 lines
No EOL
470 B
YAML
name: Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ dev ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Run admin-ui tests
|
|
working-directory: packages/admin-ui
|
|
run: npm run test:run |