Skip to content

Commit 2b97bbb

Browse files
Merge pull request #9 from MatheusBBarni/feat/parallel-agent-runs
Add parallel agent step groups and web page
2 parents 8991697 + 8039a64 commit 2b97bbb

28 files changed

Lines changed: 10229 additions & 441 deletions

.github/workflows/pages.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Deploy web to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- "web/**"
9+
- ".github/workflows/pages.yml"
10+
workflow_dispatch:
11+
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
concurrency:
18+
group: pages
19+
cancel-in-progress: false
20+
21+
jobs:
22+
build:
23+
name: Build Astro site
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v6
28+
29+
- name: Install, build, and upload site
30+
uses: withastro/action@v6
31+
with:
32+
path: web
33+
node-version: 24
34+
env:
35+
GITHUB_PAGES: "true"
36+
37+
deploy:
38+
name: Deploy GitHub Pages
39+
needs: build
40+
runs-on: ubuntu-latest
41+
environment:
42+
name: github-pages
43+
url: ${{ steps.deployment.outputs.page_url }}
44+
steps:
45+
- name: Deploy
46+
id: deployment
47+
uses: actions/deploy-pages@v5

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ target/npm-dist/
55
npm/**/*.tgz
66
npm/platform/*/bin/
77
SHA256SUMS
8+
.playwright-mcp

0 commit comments

Comments
 (0)