-
Notifications
You must be signed in to change notification settings - Fork 0
123 lines (99 loc) · 2.83 KB
/
Copy pathbuild.yml
File metadata and controls
123 lines (99 loc) · 2.83 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
name: Nx PHP Build
on:
push:
branches:
- main
tags: ["v*"]
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node: [20.x]
php: [8.1,8.2]
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v5
name: Derive appropriate SHAs for base and head for `nx affected` commands
with:
main-branch-name: 'main'
- uses: actions/cache@v6
name: Cache `.nx_cache`
id: build_cache
with:
path: .nx_cache
key: build-${{ matrix.node }}-${{ github.sha }}
restore-keys:
build-${{ matrix.node }}
- uses: graycoreio/github-actions/clear-old-nx-cache@main
with:
size-in-mb: 500
- uses: graycoreio/github-actions/setup-node@main
with:
node-version: ${{ matrix.node }}
use-stamp-cache: true
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- uses: actions/cache@v6
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer
- run: composer install
- run: npx nx run-many -t build
- run: npx nx run-many -t test
- run: npx nx run-many -t e2e
build-success:
name: Build Success
runs-on: ubuntu-latest
needs: [build]
if: always()
steps:
- name: Check build result
run: |
if [[ "${{ needs.build.result }}" != "success" ]]; then
echo "Build did not succeed (result: ${{ needs.build.result }})"
exit 1
fi
publish:
name: Publish
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
needs:
- build
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 1
- uses: actions/cache@v6
name: Cache `.nx_cache`
id: build_cache
with:
fail-on-cache-miss: true
path: .nx_cache
key: build-20.x-${{ github.sha }}
restore-keys:
build-20.x
- uses: graycoreio/github-actions/setup-node@main
with:
node-version: 20.x
use-stamp-cache: true
registry-url: 'https://registry.npmjs.org'
- run: npx nx run-many -t build
- uses: graycoreio/github-actions/set-versions-from-root@main
- run: npx nx run-many -t publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}