Add Gitea Actions workflow to run PHPUnit on pull requests #1

Merged
aneurin merged 2 commits from add-ci-workflow into main 2026-09-05 09:33:43 +00:00
Showing only changes of commit e59890618e - Show all commits
+6
View File
@@ -9,6 +9,12 @@ jobs:
runs-on: ubuntu-latest
container: php:8.3-cli-alpine
steps:
# actions/checkout is a JS action -- php:8.3-cli-alpine has no node on
# PATH by default, so install it (musl-native, no glibc/Alpine mismatch)
# before any step that needs it.
- name: Install Node
run: apk add --no-cache nodejs
- uses: actions/checkout@v4
- name: Install Composer