Skip to content

Commit

Permalink
Use workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
anubisthejackle committed May 16, 2024
1 parent 68705f4 commit 1b3bf9b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 41 deletions.
41 changes: 0 additions & 41 deletions .github/actions/unit-test.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Testing Suite

on:
push:
branches:
- develop
pull_request:
# Uncomment and edit the following to run on a schedule.
# schedule:
# - cron: '30 5 * * 0' # Run once per week at 5:30am UTC on Sundays.

jobs:
checkout-code:
uses: actions/checkout@v4
with:
submodules: 'recursive'

node-tests:
uses: alleyinteractive/.github/.github/workflows/node-tests@feature/issue-86/allow-building-during-testing
with:
checkout: false
check-gitignore: false
check-git-conflicts: false
run-audit: false
run-test: false
run-lint: false
run-build: true

php-tests:
strategy:
matrix:
php: [8.1, 8.2]
wordpress: ["latest"]
uses: alleyinteractive/.github/.github/workflows/php-tests@feature/issue-86/allow-building-during-testing
with:
php: ${{ matrix.php }}
wordpress: ${{ matrix.wordpress }}
checkout: false

0 comments on commit 1b3bf9b

Please sign in to comment.