-
Notifications
You must be signed in to change notification settings - Fork 3
53 lines (42 loc) · 1.48 KB
/
cypress.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
42
43
44
45
46
47
48
49
50
51
52
53
name: cypress tests
on: [pull_request]
jobs:
build:
name: Building site and running cypress tests
runs-on: ubuntu-latest
steps:
- name: Checkout source.
uses: actions/checkout@v2
- uses: php-actions/composer@v6
with:
php_version: '8.1'
php_extensions: gd
- name: Install ddev.
run: |
curl -fsSL https://apt.fury.io/drud/gpg.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/ddev.gpg > /dev/null
echo "deb [signed-by=/etc/apt/trusted.gpg.d/ddev.gpg] https://apt.fury.io/drud/ * *" | sudo tee /etc/apt/sources.list.d/ddev.list
sudo apt update && sudo apt install -y ddev
- name: Setup Drupal website.
run: ./scripts/setup.sh
- name: Install cypress dependencies.
run: yarn install --frozen-lockfile
- name: Run cypress.
run: yarn run cy:run
- name: Publish test results.
uses: EnricoMi/publish-unit-test-result-action@v1
if: github.actor != 'dependabot[bot]'
with:
files: cypress/*.xml
check_name: 'Cypress Test Results'
- name: Archive test results.
uses: actions/upload-artifact@v2
if: always()
with:
name: cypress-results
path: cypress
retention-days: 2
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}