23 lines
352 B
YAML
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
|