Merge remote-tracking branch 'origin/main'
Some checks failed
Build and Push Docker Image / test (push) Failing after 13s
Build and Push Docker Image / build (push) Failing after 5m52s

This commit is contained in:
brusnitsyn
2026-02-27 15:01:27 +09:00

View File

@@ -13,8 +13,13 @@ env:
jobs:
test:
runs-on: ubuntu-latest
runs-on: linux
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Checkout
uses: actions/checkout@v4
@@ -35,16 +40,10 @@ jobs:
run: vendor/bin/phpunit
build:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
runs-on: docker
#if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3