diff --git a/.drone.yml b/.drone.yml index dcfb156..5fad5d8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -14,18 +14,19 @@ steps: - name: install dependencies image: sandervocke/postgres_node:12 commands: - - npm install - - cd /drone/src/server && npm install + - echo "hi!" +# - npm install +# - cd /drone/src/server && npm install -- name: back-end test (SQLite3) - image: sandervocke/postgres_node:12 - commands: - - cd /drone/src/server && ./test/test.sh --sqlite +# - name: back-end test (SQLite3) +# image: sandervocke/postgres_node:12 +# commands: +# - cd /drone/src/server && ./test/test.sh --sqlite -- name: back-end test (PostgreSQL) - image: sandervocke/postgres_node:12 - commands: - - cd /drone/src/server && ./test/test.sh --postgres --start-postgres-testcontainer +# - name: back-end test (PostgreSQL) +# image: sandervocke/postgres_node:12 +# commands: +# - cd /drone/src/server && ./test/test.sh --postgres --start-postgres-testcontainer --- kind: pipeline @@ -44,13 +45,14 @@ steps: - name: install dependencies image: node commands: - - cd /drone/src && npm install - - cd /drone/src/client && npm install - -- name: front-end compile - image: node - commands: - - cd /drone/src/client && ./node_modules/.bin/tsc; cd .. + - echo "hi!" +# - cd /drone/src && npm install +# - cd /drone/src/client && npm install + +# - name: front-end compile +# image: node +# commands: +# - cd /drone/src/client && ./node_modules/.bin/tsc; cd .. --- kind: pipeline