Skip to content

Commit 0789407

Browse files
committed
Restructure project into action/, worker/, test/ directories
- action/: GitHub Action source, build config, and bundled output - worker/: Cloudflare Worker backend (already in place) - test/: sample C++ project used by the CI workflow - Root keeps only action.yml (GHA requirement) and repo-level config https://claude.ai/code/session_01NpiSv9DJeWXyK77tjPGt8F
1 parent 86ec680 commit 0789407

12 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v6
3030
- name: configure
31-
run: cmake -S. -Bbuild
31+
run: cmake -Stest -Bbuild
3232
- name: build-${{ matrix.os.name }}
3333
run: |
3434
echo "CPPWARNINGNOTIFIER_LOG_MARKER"

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
node_modules
2-
3-
build/*
1+
node_modules/
2+
build/

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ inputs:
2424

2525
runs:
2626
using: "node24"
27-
main: "dist/index.js"
27+
main: "action/dist/index.js"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)