generated from hydephp/hyde
-
-
Notifications
You must be signed in to change notification settings - Fork 3
55 lines (42 loc) · 1.23 KB
/
test-pull-request.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
name: Test Pull Request
on:
pull_request:
branches: [ master, upcoming ]
jobs:
can-build-site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Update config
run: |
echo output_directory: _site > hyde.yml
- name: Install composer dependencies
run: composer install
- name: Output debug information
run: |
php hyde --version
php hyde debug
- name: Run the Hyde Builder
run: php hyde build --pretty-urls --no-interaction
- name: Create docs redirect
run: echo '<meta http-equiv="refresh" content="0;url=/docs/1.x" />' > _site/docs/index.html
- name: Run tests
run: php bin/build-tests.php
- name: Reduce size of debug artifact
run: rm -rf _site/media
- name: Upload artifacts
uses: actions/upload-artifact@v3
if: always()
with:
name: site
path: _site