Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: CI

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

jobs:
build:
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ jobs:
deploy:
runs-on: ubuntu-latest

# Uncomment the following for a standard deployment to Kinsta
# steps:
# Replace this placeholder with the commented steps below for a
# standard deployment to Kinsta
steps:
- name: Deployment not configured
run: echo "Deployment is not configured. Replace this step with the commented Kinsta steps in this file."

# - name: Checkout code
# uses: actions/checkout@v4
# uses: actions/checkout@v6
# - name: Set up SSH
# uses: webfactory/ssh-agent@v0.9.0
# uses: webfactory/ssh-agent@v0.10.0
# with:
# ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Check Docker Compose development environment
on: push
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install Composer dependencies
uses: php-actions/composer@v6
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/theme.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Theme build

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:

jobs:
build:
Expand All @@ -9,10 +13,10 @@ jobs:
run:
working-directory: web/app/themes/wordpress-starter-template
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: web/app/themes/wordpress-starter-template/.nvmrc
cache: npm
Expand Down