File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ .gitignore
2+ composer.lock
3+ phpcs.xml*
4+ .babelrc
5+ .env.dist
6+ .editorconfig
7+ .eslintrc
8+ .prettierrc.js
9+ .wp-env.json
10+ webpack.config.js
11+ docker-compose.yml
12+ docker
13+ test_results
14+ node_modules
Original file line number Diff line number Diff line change 1+ name : Build WordPress Plugin
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - name : Checkout repository
14+ uses : actions/checkout@v4
15+
16+ - name : Cache Composer dependencies
17+ uses : actions/cache@v4
18+ with :
19+ path : /tmp/composer-cache
20+ key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
21+
22+ - name : Setup PHP with tools
23+ uses : shivammathur/setup-php@v2
24+ with :
25+ php-version : ' 8.3'
26+ tools : composer:v2
27+
28+ - name : Install dependencies
29+ run : composer install --no-dev -o
30+
31+ - name : Deploy to main-built branch
32+ run : bash <(curl -s "https://raw.githubusercontent.com/Automattic/vip-go-build/master/deploy.sh")
You can’t perform that action at this time.
0 commit comments