Skip to content

Commit b5564bf

Browse files
authored
fix: correct YAML syntax errors in CI workflow (#104)
- Remove malformed SSH key references from workflow steps - Fix indentation issues that were causing workflow validation errors - Ensure proper YAML structure for setup-submodules action calls This resolves the 'error in your yaml syntax on line 68' issue.
1 parent 155447b commit b5564bf

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/ci-cd.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ jobs:
6565
- uses: ./.github/workflows/steps/setup-node
6666

6767
- uses: ./.github/workflows/steps/setup-submodules
68-
self-ssh-private-key: ${{ secrets.SELF_SSH_PRIVATE_KEY }}
6968

7069
- name: Lint the project
7170
run: yarn lint
@@ -82,7 +81,6 @@ jobs:
8281
- uses: ./.github/workflows/steps/setup-node
8382

8483
- uses: ./.github/workflows/steps/setup-submodules
85-
self-ssh-private-key: ${{ secrets.SELF_SSH_PRIVATE_KEY }}
8684

8785
- name: Run unit tests
8886
run: yarn test
@@ -101,7 +99,6 @@ jobs:
10199
- uses: ./.github/workflows/steps/setup-node
102100

103101
- uses: ./.github/workflows/steps/setup-submodules
104-
self-ssh-private-key: ${{ secrets.SELF_SSH_PRIVATE_KEY }}
105102

106103
- name: Restore build artifacts
107104
uses: actions/cache@v4
@@ -161,7 +158,6 @@ jobs:
161158
- uses: ./.github/workflows/steps/setup-node
162159

163160
- uses: ./.github/workflows/steps/setup-submodules
164-
self-ssh-private-key: ${{ secrets.SELF_SSH_PRIVATE_KEY }}
165161

166162
- name: Restore build artifacts
167163
uses: actions/cache@v4

0 commit comments

Comments
 (0)