-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "disable CircleCI builds on this branch"
This reverts commit 60731d7. we send a webhook to circleCI and report failure regardless of whether or not there's a config file.
- Loading branch information
1 parent
0d4e7d5
commit d15de24
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
version: 2.1 | ||
description: Fauna Shell Tests | ||
|
||
executors: | ||
core: | ||
resource_class: large | ||
docker: | ||
- image: cimg/node:22.9.0 | ||
environment: | ||
TERM: xterm-256color | ||
|
||
commands: | ||
build_and_test: | ||
description: "Run fauna-shell tests" | ||
steps: | ||
- checkout | ||
|
||
- run: | ||
name: Install dependencies | ||
command: npm ci | ||
|
||
- run: | ||
name: Run Tests | ||
command: npm test | ||
|
||
- store_test_results: | ||
path: test-results.xml | ||
|
||
- store_artifacts: | ||
path: coverage | ||
|
||
jobs: | ||
fauna-shell-tests: | ||
executor: | ||
name: core | ||
steps: | ||
- build_and_test | ||
|
||
workflows: | ||
version: 2 | ||
build_and_test: | ||
jobs: | ||
- fauna-shell-tests: | ||
context: faunadb-drivers |