fedifeed/.drone.yml
Sam Therapy dd6144ed41
Purge axios because it's stinky
and add PNPM instead of yarn

Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-10-24 23:34:35 +02:00

22 lines
376 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: dependencies
image: node
commands:
- curl -L https://pnpm.js.org/pnpm.js | node - add --global pnpm@7
- pnpm i
- name: lint
image: node
commands:
- npm run lint:ci
depends: [dependencies]
- name: test
image: node
commands:
- npm run test
depends: [lint]