fixes
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2026-02-27 22:46:29 +01:00
parent 3104eb7388
commit 7d3e3a7e5d
2 changed files with 47 additions and 47 deletions

View File

@@ -1,46 +1,46 @@
kind: pipeline
type: docker
name: server_build_and_test
trigger:
branch:
- main
event:
- push
steps:
- name: build_server
image: node
commands:
- npm ci
- npm run build -w @calchat/shared
- npm run build -w @calchat/server
- name: jest_server
image: node
commands:
- npm run test -w @calchat/server
---
kind: pipeline
type: docker
name: check_for_formatting
trigger:
branch:
- main
event:
- push
steps:
- name: format_check
image: node
commands:
- npm ci
- npm run check_format
---
# kind: pipeline
# type: docker
# name: server_build_and_test
#
# trigger:
# branch:
# - main
# event:
# - push
#
# steps:
# - name: build_server
# image: node
# commands:
# - npm ci
# - npm run build -w @calchat/shared
# - npm run build -w @calchat/server
#
# - name: jest_server
# image: node
# commands:
# - npm run test -w @calchat/server
#
# ---
#
# kind: pipeline
# type: docker
# name: check_for_formatting
#
# trigger:
# branch:
# - main
# event:
# - push
#
# steps:
# - name: format_check
# image: node
# commands:
# - npm ci
# - npm run check_format
#
# ---
kind: pipeline
type: docker
@@ -191,9 +191,9 @@ steps:
status:
- success
depends_on:
- server_build_and_test
- check_for_formatting
# depends_on:
# - server_build_and_test
# - check_for_formatting
---