Skip to content

Commit

Permalink
Merge pull request #5596 from NomicFoundation/galargh/merge-queue
Browse files Browse the repository at this point in the history
ci: enable merge queue on the v-next branch
  • Loading branch information
alcuadrado authored Aug 13, 2024
2 parents 1b1c69e + e460231 commit f140e2d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/v-next-ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: vNext CI

on:
merge_group:
push:
branches:
- v-next
Expand Down Expand Up @@ -108,6 +109,23 @@ jobs:
- name: Lint
run: pnpm lint

lint-aggregate:
needs: lint

if: ${{ !cancelled() }}

name: lint
runs-on: ubuntu-latest

steps:
- env:
result: ${{ needs.lint.result }}
run: |
if [[ "$result" == "failure" ]]; then
exit 1
fi
shell: bash

ci:
needs: list-packages

Expand Down Expand Up @@ -137,3 +155,20 @@ jobs:
run: pnpm build
- name: Run tests
run: pnpm run test

ci-aggregate:
needs: ci

if: ${{ !cancelled() }}

name: ci
runs-on: ubuntu-latest

steps:
- env:
result: ${{ needs.ci.result }}
run: |
if [[ "$result" == "failure" ]]; then
exit 1
fi
shell: bash

0 comments on commit f140e2d

Please sign in to comment.