diff --git a/.github/workflows/persistence.yml b/.github/workflows/persistence.yml index 75c3775..b7f59aa 100644 --- a/.github/workflows/persistence.yml +++ b/.github/workflows/persistence.yml @@ -2,8 +2,9 @@ name: "CI: persistence" on: push: paths: - - persistence - - .github/workflows/persistence + - persistence/**/* + - .github/workflows/persistence.yml + - .github/actions/**/* workflow_dispatch: defaults: run: @@ -33,6 +34,7 @@ jobs: - run: pnpm test build: name: Build container image + needs: [check, test] runs-on: ubuntu-latest environment: DigitalOcean steps: diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml index d35ac35..e797352 100644 --- a/.github/workflows/worker.yml +++ b/.github/workflows/worker.yml @@ -2,8 +2,10 @@ name: "CI: worker" on: push: paths: - - worker - - .github/workflows/worker + - worker/**/* + - .github/workflows/worker.yml + - .github/actions/**/* + workflow_dispatch: defaults: run: working-directory: worker @@ -32,6 +34,7 @@ jobs: - run: pnpm test build: name: Build container image + needs: [check, test] runs-on: ubuntu-latest environment: DigitalOcean steps: