Files
discordeno/.github/workflows/lib-check-e2e.yml
Jonathan Ho 860bbe1820 ci: temp fix #3299 (#3300)
* fix: temp fix #3299

* ci: add Workflow Queue
2023-12-11 20:24:06 +00:00

37 lines
726 B
YAML

name: Library Checks (E2E)
on:
pull_request:
push:
branches:
- main
paths-ignore:
- 'website/**'
merge_group:
jobs:
workqueue:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ahmadnassri/action-workflow-queue@v1
with:
timeout: 6000000
rest-e2e-test:
needs: workqueue
name: Rest
uses: ./.github/workflows/e2e-test.yml
secrets: inherit
with:
package: rest
event_name: ${{ github.event_name }}
bot-e2e-test:
name: Bot
needs: rest-e2e-test
if: ${{ always() }}
uses: ./.github/workflows/e2e-test.yml
secrets: inherit
with:
package: bot
event_name: ${{ github.event_name }}