Skip to content

Commit

Permalink
CircleCI Commit (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
tigercosmos authored Jun 23, 2024
1 parent ee0649c commit 3074ee5
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# This config was automatically generated from your source code
# Stacks detected: cicd:github-actions:.github/workflows,deps:node:.,test:jest:
version: 2.1
orbs:
node: circleci/node@5
jobs:
test-node:
# Install node dependencies and run tests
executor: node/default
environment:
JEST_JUNIT_OUTPUT_DIR: ./test-results/
steps:
- checkout
- node/install-packages:
pkg-manager: npm
- run:
command: npm install jest-junit
- run:
name: Run tests
command: npm run test --ci --runInBand --reporters=default --reporters=jest-junit
- store_test_results:
path: ./test-results/
deploy:
# This is an example deploy job, not actually used by the workflow
docker:
- image: cimg/base:stable
steps:
# Replace this with steps to deploy to users
- run:
name: deploy
command: '#e.g. ./deploy.sh'
- run:
name: found github actions config
command: ':'
workflows:
build-and-test:
jobs:
- test-node
# - deploy:
# requires:
# - test-node

0 comments on commit 3074ee5

Please sign in to comment.