-
-
Notifications
You must be signed in to change notification settings - Fork 1
189 lines (150 loc) · 4.3 KB
/
ci-cd.yml
File metadata and controls
189 lines (150 loc) · 4.3 KB
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
name: CI/CD Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
release:
types: [ published ]
permissions:
contents: read
jobs:
lint-and-test:
name: Lint and Test
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
node-version: [18.x, 20.x]
php-version: [8.0, 8.1, 8.2]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mysql, zip
tools: composer
- name: Install Node.js dependencies
run: npm ci
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Lint JavaScript
run: npm run lint:js
- name: Lint CSS
run: npm run lint:css
- name: Lint PHP
run: composer run lint
- name: Run JavaScript tests
run: npm run test:unit
- name: Run PHP tests
run: composer run test
- name: Build plugin
run: npm run build
- name: Archive build artifacts
if: matrix.node-version == '20.x' && matrix.php-version == '8.1'
uses: actions/upload-artifact@v4
with:
name: build-files
path: build/
security-audit:
name: Security Audit
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run npm audit
run: |
echo "🔒 Running security audit..."
npm audit --audit-level=moderate --production || {
echo "❌ Security vulnerabilities detected."
echo "Run 'npm audit' locally for details."
exit 1
}
- name: Check for outdated dependencies
run: |
echo "📦 Checking for outdated dependencies..."
npm outdated || true
e2e-tests:
name: E2E Tests
runs-on: ubuntu-latest
needs: lint-and-test
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install --with-deps
- name: Build plugin
run: npm run build
- name: Start WordPress environment
run: npm run env:start
- name: Run E2E tests
run: npm run test:e2e
- name: Upload E2E test results
if: always()
uses: actions/upload-artifact@v4
with:
name: e2e-test-results
path: test-results/
deploy:
name: Deploy Release
runs-on: ubuntu-latest
needs: [lint-and-test, e2e-tests, security-audit]
if: github.event_name == 'release'
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
tools: composer
- name: Install dependencies
run: |
npm ci
composer install --no-dev --optimize-autoloader
- name: Build plugin
run: npm run build
- name: Create plugin ZIP
run: npm run plugin-zip
- name: Upload ZIP to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./{{slug}}.zip
asset_name: {{slug}}.zip
asset_content_type: application/zip