Files
discordeno/.github/workflows/lib-check-e2e.yml
dependabot[bot] bdb0ac9524 build(deps-dev): bump typedoc from 0.25.6 to 0.25.7 (#3356)
* build(deps-dev): bump typedoc from 0.25.6 to 0.25.7

Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.25.6 to 0.25.7.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.25.6...v0.25.7)

---
updated-dependencies:
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* ci: dont wait

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: H01001000 <heiheiho000@gmail.com>
2024-01-11 21:02:57 +00:00

38 lines
781 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
if: ${{ github.event_name != 'pull_request' }}
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 }}