Fix deprecated PHP #603
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Auto Build' | |
on: | |
pull_request: | |
paths: | |
- 'ui/js/blocks/src/**' | |
- 'ui/js/dfv/src/**' | |
- 'ui/styles/src/**' | |
- 'package.json' | |
- 'webpack.*.js' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '16.13.2' | |
- name: Install dependencies | |
run: npm install | |
- name: Maybe build Pods Blocks JS API, Pods DFV, and styles assets | |
run: npm run build-production | |
- name: Maybe update version number | |
run: npm run version_number | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
file_pattern: ui/js/blocks/pods-blocks-api.min.* ui/js/dfv/pods-dfv.min.* ui/styles/dist/*.css readme.txt init.php | |
commit_message: Auto rebuild assets |