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): move executors in main config file
  • Loading branch information
Airscript committed Aug 14, 2022
commit 53e13442276bea7adb26599ce1f0db018267926f
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ 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
8 changes: 0 additions & 8 deletions .circleci/watchtower.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,6 @@ parameters:
type: boolean
default: false

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.bats
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ setup() {
run ./scripts/install/make.sh
assert_output --partial "$INSTALL_MAKE"
refute_output --partial "ERROR"
}
}