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