Skip to content

Commit

Permalink
Revert "disable CircleCI builds on this branch"
Browse files Browse the repository at this point in the history
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
echo-bravo-yahoo committed Oct 22, 2024
1 parent 0d4e7d5 commit d15de24
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .circleci/config.yml
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

0 comments on commit d15de24

Please sign in to comment.