---
kind: pipeline
type: docker
name: compliance

trigger:
  branch:
    - main
  event:
    - push
    - pull_request

steps:
  - name: lint
    image: node:22.12.0@sha256:0e910f435308c36ea60b4cfd7b80208044d77a074d16b768a81901ce938a62dc
    commands:
      - npm install
      - npm run lint
  - name: build
    image: node:22.12.0@sha256:0e910f435308c36ea60b4cfd7b80208044d77a074d16b768a81901ce938a62dc
    environment:
      NODE_OPTIONS: '--openssl-legacy-provider'
    commands:
      - npm run build

---
kind: pipeline
type: docker
name: deploy

trigger:
  branch:
    - main
  event:
    - push

depends_on:
  - compliance

steps:
  - name: build
    image: node:22.12.0@sha256:0e910f435308c36ea60b4cfd7b80208044d77a074d16b768a81901ce938a62dc
    environment:
      NODE_OPTIONS: '--openssl-legacy-provider'
    commands:
      - npm install
      - npm run build
  - name: deploy
    image: drillster/drone-rsync@sha256:8f850004f5bf9b3bcb5ce360876a9786f67d3a1f18861084f4252d3d4c5ee3b5
    settings:
      hosts: [ "www.wtf-eg.net" ]
      user: onboarding
      key:
        from_secret: SSH_KEY
      source: ./dist/
      target: /srv/www/onboarding.wtf-eg.de/
      recursive: true