-
-
Notifications
You must be signed in to change notification settings - Fork 7
161 lines (140 loc) · 5.05 KB
/
e2e.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
name: E2E Testing
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: none
jobs:
e2e:
name: "Run E2E tests (use wordpress:${{ matrix.wordpress }} image)"
permissions:
contents: read
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
wordpress:
- php8.0
- php8.1
- php8.2
- beta-php8.0
- beta-php8.1
- beta-php8.2
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
disable-file-monitoring: true
egress-policy: block
allowed-endpoints: >
api.github.com:443
api.wordpress.org:443
auth.docker.io:443
azure.archive.ubuntu.com:80
downloads.wordpress.org:443
github.com:443
objects.githubusercontent.com:443
packagist.org:443
pecl.php.net:443
pecl.php.net:80
phar.phpunit.de:443
planet.wordpress.org:443
playwright.azureedge.net:443
production.cloudflare.docker.com:443
registry-1.docker.io:443
registry.npmjs.org:443
repo.packagist.org:443
secure.gravatar.com:443
wordpress.org:443
- name: Checkout source code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Node.js environment
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: lts/*
cache: npm
- name: Install dependencies
run: npm ci
- name: Set up PHP
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # 2.31.1
- name: Install Composer Dependencies
uses: ramsey/composer-install@57532f8be5bda426838819c5ee9afb8af389d51a # 3.0.0
- name: Install Playwright
run: npx playwright install chromium
- name: Run Playwright E2E tests
run: npm run test:e2e
env:
WP_VERSION: ${{ matrix.wordpress }}
- name: Upload test results
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
if: failure()
with:
name: playwright-test-results-${{ matrix.wordpress }}
path: test-results/
retention-days: 3
e2e-bundle:
name: Run E2E tests on the generated plugin
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
disable-file-monitoring: true
egress-policy: block
allowed-endpoints: >
api.github.com:443
api.wordpress.org:443
auth.docker.io:443
downloads.wordpress.org:443
github.com:443
objects.githubusercontent.com:443
packagist.org:443
repo.packagist.org:443
pecl.php.net:443
pecl.php.net:80
phar.phpunit.de:443
planet.wordpress.org:443
playwright.azureedge.net:443
production.cloudflare.docker.com:443
registry-1.docker.io:443
registry.npmjs.org:443
repo.packagist.org:443
secure.gravatar.com:443
wordpress.org:443
- name: Checkout source code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Generate self-contained package
run: |
git archive --format=tar --prefix=two-factor-provider-webauthn/ HEAD | (cd /var/tmp/ && tar xf -)
(cd /var/tmp/two-factor-provider-webauthn && composer install --no-dev --no-interaction && composer remove --update-no-dev --no-interaction composer/installers cweagans/composer-patches && rm -rf composer.lock composer.json patches vendor/madwizard/webauthn/.github vendor/madwizard/webauthn/conformance vendor/madwizard/webauthn/tests vendor/psr/log/Psr/Log/Test vendor/psr/http-message/docs vendor/typisttech)
- name: Patch docker-compose.yml
run: |
sed -i 's!- .:!- /var/tmp/two-factor-provider-webauthn:!' docker-compose.yml
- name: Set up Node.js environment
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: lts/*
cache: npm
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install chromium
- name: Run Playwright E2E tests
run: npm run test:e2e
env:
WP_VERSION: php8.1
- name: Upload test results
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
if: failure()
with:
name: playwright-test-results-bundle
path: test-results/
retention-days: 3