ConceptCreator/.gitea/workflows/demo.yaml

32 lines
584 B
YAML
Raw Normal View History

2024-01-26 23:56:26 +01:00
name: E2E Testing
on:
2024-01-27 00:00:20 +01:00
push
2024-01-26 23:56:26 +01:00
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
2024-01-26 23:56:26 +01:00
- name: Install dependencies
run: npm install
2024-01-26 23:56:26 +01:00
- name: Run e2e tests
run: npm run e2e
2024-02-15 16:29:57 +01:00
- name: ntfy-notifications
uses: niniyas/ntfy-action@master
with:
url: ${{ secrets.NTFY_URL }}
topic: ${{ secrets.NTFY_TOPIC }}
headers: ${{ secrets.NTFY_HEADERS }}