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 packages in tests jobs
  • Loading branch information
Airscript committed Aug 14, 2022
commit 73f6afa8061f79ff0a4dd8c1bffe2d869bcb6e1c
13 changes: 12 additions & 1 deletion .circleci/watchtower.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ jobs:
steps:
- checkout

- run:
name: Install Packages

command: |
apk update
sh scripts/install/bash.sh $BLOG_BUILD_ENV
bash scripts/install/make.sh
make install-git env=$BLOG_BUILD_ENV

- run:
name: Add Git Submodules
command: make git-submodules env=$BLOG_BUILD_ENV
Expand All @@ -40,7 +49,9 @@ jobs:

command: |
apk update
apk add bash
sh scripts/install/bash.sh $BLOG_BUILD_ENV
bash scripts/install/make.sh
make install-git env=$BLOG_BUILD_ENV
npm install -g bats

- run:
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!"
}
}