-
Notifications
You must be signed in to change notification settings - Fork 41
93 lines (72 loc) · 2.59 KB
/
unit-tests.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
name: Unit Tests
# Run on any changes in public_html
on:
pull_request:
paths:
- public_html/**
push:
branches: [trunk]
paths:
- public_html/**
jobs:
unit-php:
name: PHP
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
- name: Set PHP version
uses: shivammathur/setup-php@e04e1d97f0c0481c6e1ba40f8a538454fe5d7709 # v2.21.2
with:
php-version: 7.4
coverage: none
tools: composer:v2
- name: Install PHP dependencies
run: |
composer install
- name: Install NodeJS
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1
with:
node-version-file: '.nvmrc'
cache: yarn
- name: Install JS dependencies
run: |
yarn
- name: Build
run: yarn workspaces run build
- name: Install WordPress
run: |
chmod -R 767 ./ # TODO: Possibly integrate in wp-env
yarn wp-env start
- name: Running multisite unit tests
run: yarn test:php
if: ${{ success() || failure() }}
unit-js:
name: JS
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
- name: Install NodeJS
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1
with:
node-version-file: '.nvmrc'
cache: yarn
- name: Set PHP version
uses: shivammathur/setup-php@e04e1d97f0c0481c6e1ba40f8a538454fe5d7709 # v2.21.2
with:
php-version: 7.4
coverage: none
tools: composer:v2
- name: Install PHP dependencies
run: |
composer install
- name: Install JS dependencies
run: |
yarn
- name: Build
run: yarn workspaces run build
- name: Run unit tests on theme data store
run: yarn workspace wporg-pattern-directory-theme test:unit
- name: Run unit tests on the pattern creator
run: yarn workspace wporg-pattern-creator test:unit