Update .gitea/workflows/deploy.yml
Deployment / test (push) Successful in 1m50s
Deployment / deploy (push) Successful in 4s

This commit is contained in:
2023-07-15 00:46:19 +02:00
parent 7b5f2de66f
commit 42abc39bbe
+5 -2
View File
@@ -14,6 +14,8 @@ env:
jobs: jobs:
test: test:
env:
ONLY_HERE: ofcourse
environment: testing environment: testing
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@@ -43,11 +45,12 @@ jobs:
- name: Run tests - name: Run tests
run: npm test run: npm test
- name: Output information - name: Output information
run: echo "..." run: echo "$ONLY_HERE"
deploy: deploy:
needs: test needs: test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Output information - name: Output information
run: | run: |
echo "..." echo "$ONLY_HERE"
echo "$MONGODB_USERNAME"