-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (38 loc) · 1.04 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Cypress Tests
on:
push:
pull_request:
schedule:
# every saturday at 01:00
- cron: "0 1 * * 6"
# daily at 03:00
# - cron: "0 3 * * *"
jobs:
cypress-run:
runs-on: ubuntu-latest
# timeout-minutes: 150
steps:
- name: Checkout
uses: actions/checkout@v4
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v6
with:
build: npm install
config: baseUrl=https://stabikat.de/search/
env: grepUntagged=true
spec: |
cypress/e2e/spec.cy.js
cypress/e2e/author.cy.js
cypress/e2e/reviews.cy.js
cypress/e2e/nested.cy.js
cypress/e2e/multi-lang-phrase.cy.js
cypress/e2e/place.cy.js
cypress/e2e/chronology.cy.js
cypress/e2e/topical.cy.js
cypress/e2e/duplicates.cy.js
# browser: firefox
# Lint Yaml
- name: Yaml Lint
run: npm run lint