ConceptCreator/.gitea/workflows/demo.yaml
sebastian 2df67dd99d
All checks were successful
E2E Testing / test (push) Successful in 1m35s
Try with auth keyword and corrected secrets access
2024-02-15 19:39:47 +01:00

32 lines
607 B
YAML

name: E2E Testing
on:
push
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
- name: Install dependencies
run: npm install
- name: Run e2e tests
run: npm run e2e
- name: ntfy-notifications
uses: niniyas/ntfy-action@master
with:
url: ${{ secrets.NTFY_URL }}
topic: ${{ secrets.NTFY_TOPIC }}
headers: '{"authorization": "${{ secrets.NTFY_HEADERS }}"}'