14 lines
246 B
YAML
14 lines
246 B
YAML
when:
|
|
- event: pull_request
|
|
- event: push
|
|
branch: main
|
|
- event: manual
|
|
|
|
steps:
|
|
- name: test
|
|
image: docker.io/node:24-slim
|
|
environment:
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
|
commands:
|
|
- npm ci
|
|
- npm run test:unit
|