Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
4a47d5d
chore(deps): bump form-data in /.github/workflows/scripts/mailchimp (…
dependabot[bot] Aug 2, 2025
0b05851
docs(community): update latest maintainers list (#4300)
asyncapi-bot Aug 3, 2025
27aa534
ci: update workflow
anushkaaaaaaaa Aug 3, 2025
4487d3d
ci: small change
anushkaaaaaaaa Aug 3, 2025
b9e6e25
Merge branch 'master' into ci-branch
asyncapi-bot Aug 3, 2025
9f66a85
docs(community): update latest Board and TSC members list (#4301)
asyncapi-bot Aug 4, 2025
c166eaa
docs(community): update latest community documentation (#4308)
asyncapi-bot Aug 4, 2025
bc0eeff
docs: improve writing style for tags (#3411)
bandantonio Aug 5, 2025
fa52d0b
chore(blog): add the july community summary (#4287)
thulieblack Aug 5, 2025
debf7d0
chore: update tools.json (#4306)
asyncapi-bot Aug 5, 2025
8d2b28c
chore(deps-dev): bump ipx from 1.3.1 to 1.3.2 (#4313)
dependabot[bot] Aug 5, 2025
68552fa
chore: update meetings.json and newsrooom_videos.json (#4314)
asyncapi-bot Aug 6, 2025
80509d5
chore(deps): bump tmp and inquirer (#4316)
dependabot[bot] Aug 6, 2025
f299391
ci: new update
anushkaaaaaaaa Aug 6, 2025
31e8049
Merge branch 'ci-branch' of https://github.com/anushkaaaaaaaa/website…
anushkaaaaaaaa Aug 6, 2025
f37d8d7
Merge branch 'master' into ci-branch
anushkaaaaaaaa Aug 6, 2025
fdcd360
fix: update
anushkaaaaaaaa Aug 7, 2025
b1cae9e
Merge branch 'ci-branch' of https://github.com/anushkaaaaaaaa/website…
anushkaaaaaaaa Aug 7, 2025
78d3b2a
fix: new update
anushkaaaaaaaa Aug 7, 2025
ba24049
ci: small fix
anushkaaaaaaaa Aug 7, 2025
35de37c
new ci
anushkaaaaaaaa Aug 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Run Cypress E2E Tests

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
cypress-run:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- name: Set up Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
with:
node-version: 20
cache: npm

- name: Install dependencies
run: npm install

- name: Cypress run
uses: cypress-io/github-action@6c143abc292aa835d827652c2ea025d098311070
with:
start: npm run dev

Loading
Loading