aboutsummaryrefslogtreecommitdiff
path: root/.drone.yml
blob: 4479ee8910db0d8bfd29cfcbcb65a47176307376 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
kind: pipeline
type: kubernetes
name: default

steps:
- name: AO Coverage Verify
  image: node:lts
  commands:
  - mkdir -p /dist && chown $USER:$USER /dist && cp .env.sample .env
  - yarn install --immutable --immutable-cache --check-cache
  - yarn run test:coverage
  - curl --proto '=https' --tlsv1.2 -sSf https://cov.submelon.dev/sh | sh

trigger:
  branch:
  - trunk
  event:
  - pull_request
  - push
  - custom