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 executors keyword
  • Loading branch information
Airscript committed Aug 14, 2022
commit 5fc690fc2ffd8b09098a543d7011728361cb6154
8 changes: 0 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@ executors:
docker:
- image: alpine:3.16

tests-node-environment:
docker:
- image: node:18.7.0-alpine3.16

tests-bats-environment:
docker:
- image: bats/bats:1.7.0

deploy-environment:
docker:
- image: node:18.7.0-alpine3.16
Expand Down
9 changes: 9 additions & 0 deletions .circleci/watchtower.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ parameters:
type: boolean
default: false

executors:
tests-node-environment:
docker:
- image: node:18.7.0-alpine3.16

tests-bats-environment:
docker:
- image: bats/bats:1.7.0

jobs:
tests-bats:
executor: tests-bats-environment
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!"
}
}