„.gitea/workflows/build.yml“ ändern
Gitea Actions Demo / Test-Job (push) Successful in 10s
Gitea Actions Demo / Build (push) Failing after 44s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 19s

This commit is contained in:
2023-07-12 00:40:41 +02:00
parent 14d6d17207
commit 1f2075f5da
+13
View File
@@ -14,6 +14,19 @@ jobs:
echo "Hopefully yes" echo "Hopefully yes"
- name: Print goodbye - name: Print goodbye
run: echo "Done - bye!" run: echo "Done - bye!"
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Build app
run: |
npm ci
npm test
Explore-Gitea-Actions: Explore-Gitea-Actions:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: