supplier_central_frontend/.woodpecker/build.yml

23 lines
352 B
YAML

when:
- event: [push, pull_request]
steps:
- name: install
image: node:20-alpine
commands:
- npm ci
- name: lint
image: node:20-alpine
commands:
- npm run lint
- name: test
image: node:20-alpine
commands:
- npm run test
- name: build
image: node:20-alpine
commands:
- npm run build