-
Notifications
You must be signed in to change notification settings - Fork 4
172 lines (135 loc) · 5.06 KB
/
sample-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
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
name: Trial Tests
on:
push:
branches:
- trunk
paths-ignore:
- '.github/**'
- '.gitignore'
- '**.md'
pull_request:
types: [ opened, edited, synchronize, reopened, ready_for_review ]
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout plugin
uses: actions/checkout@v3
with:
repository: bluehost/bluehost-wordpress-plugin
ref: 'develop'
- name: list directories
run: |
ls
pwd
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "npm"
- name: Checkout module
uses: actions/checkout@v3
with:
path: ./modules/${{ github.repository }}
- name: Get Composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer vendor directory
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Show versions
run: |
php --version
composer --version
node --version
npm --version
- name: Modify composer.json
run: |
node ./modules/newfold-labs/wp-module-ecommerce/scripts/update-plugin-composer.mjs ${PWD}/composer.json ${PWD}/modules
- name: Update lockfile
run: composer update
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install PHP Dependencies
run: composer install --no-progress --no-dev --optimize-autoloader --prefer-dist
- name: Setup Registry on Plugin
run: printf "\n//npm.pkg.github.com/:_authToken=${{ secrets.NEWFOLD_ACCESS_TOKEN }}" >> .npmrc
- name: NPM Install
run: npm ci --legacy-peer-deps
- name: Setup Registry on Module
working-directory: ./modules/${{ github.repository }}
run: printf "\n//npm.pkg.github.com/:_authToken=${{ secrets.NEWFOLD_ACCESS_TOKEN }}" >> .npmrc
- name: Setup module
working-directory: ./modules/${{ github.repository }}
run: npm ci --legacy-peer-deps
- name: NPM Install module
run: npm install ./modules/newfold-labs/wp-module-ecommerce --legacy-peer-deps --force
- name: View modified files
run: cat package.json composer.json
# - name: Build JavaScript
# run: npm run build
- name: Setup workflow context
id: workflow
working-directory: ${{ runner.temp }}
env:
REPO: "bluehost-wordpress-plugin"
run: |
mkdir dist
echo "DIST=${PWD}/dist" >> $GITHUB_OUTPUT
echo "PACKAGE=${REPO##*/}" >> $GITHUB_OUTPUT
- name: Prepare files
run: rsync -r --exclude-from=.distignore . ${{ steps.workflow.outputs.DIST }}
- uses: actions/upload-artifact@v3
with:
name: ${{ steps.workflow.outputs.PACKAGE }}
path: ${{ steps.workflow.outputs.DIST }}
- name: Download Bluehost Plugin
id: download-artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: bluehost-plugin.yml
workflow_conclusion: success
name: bluehost-wordpress-plugin
path: ${{ steps.workflow.outputs.DIST }}/${{ steps.workflow.outputs.PACKAGE }}
- name: List Distribution Files
working-directory: ${{ steps.workflow.outputs.DIST }}
run: find .
- name: Configure WordPress
run: echo '{"config":{"WP_DEBUG_DISPLAY":false},"plugins":["${{ steps.workflow.outputs.DIST }}/${{ steps.workflow.outputs.PACKAGE }}"]}' > .wp-env.override.json
- name: Install WordPress
run: npx wp-env start
# - name: Run PHPUnit Tests
# run: npm run test:unit
- name: Run Cypress Tests
run: npx cypress run
- name: Store screenshots of test failures
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: screenshots
path: ./tests/cypress/screenshots
- name: Check if a debug.log file exists
id: hasErrors
run: npx wp-env run wordpress test ! -f /var/www/html/wp-content/debug.log
- name: Copy debug.log file
if: ${{ steps.hasErrors.outputs.failure }}
run: cat /var/www/html/wp-content/debug.log 1>./debug.log 2>/dev/null
- name: Store debug.log file
if: ${{ steps.hasErrors.outputs.failure }}
uses: actions/upload-artifact@v2
with:
name: logs
path: ./debug.log
- name: Store a copy of the plugin on success
if: ${{ success() }}
uses: actions/upload-artifact@v1
with:
name: ${{ steps.workflow.outputs.PACKAGE }}
path: ${{ steps.workflow.outputs.DIST }}