Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
fix(ci): add missing git submodules in tests jobs
  • Loading branch information
Airscript committed Aug 14, 2022
commit b1fabcbbfe50658da4ac273658ce1457dd7e109b
8 changes: 8 additions & 0 deletions .circleci/watchtower.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
steps:
- checkout

- run:
name: Add Git Submodules
command: make git-submodules env=$BLOG_BUILD_ENV

- run:
name: Run Tests
command: bats ./tests/_.bats ./tests/install.bats ./tests/shared.bats
Expand All @@ -39,6 +43,10 @@ jobs:
apk add bash
npm install -g bats

- run:
name: Add Git Submodules
command: make git-submodules env=$BLOG_BUILD_ENV

- run:
name: Run Node Tests
command: bats tests/_.bats tests/install-node.bats
Expand Down
2 changes: 1 addition & 1 deletion tests/install-node.bats
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ setup() {
run ./scripts/install/netlify-cli.sh
assert_output --partial "$INSTALL_NETLIFY_CLI"
refute_output --partial "ERR!"
}
}