Skip to content

Commit

Permalink
Disables circle ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanformio committed Oct 5, 2023
1 parent d53f7a3 commit 00d3389
Showing 1 changed file with 33 additions and 21 deletions.
54 changes: 33 additions & 21 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,33 @@
# version: 2
# jobs:
# build:
# docker:
# - image: cimg/node:lts
# steps:
# - checkout
# - restore_cache:
# key: dependency-cache-{{ checksum "package.json" }}
# - run:
# name: Install modules
# command: yarn install
# - save_cache:
# key: dependency-cache-{{ checksum "package.json" }}
# paths:
# - node_modules
# - run:
# name: Test
# command: npm test
# - store_artifacts:
# path: test-results.xml
version: 2
jobs:
build:
docker:
- image: cimg/node:lts
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install modules
command: yarn install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- node_modules
- run:
name: Test
command: npm test
- store_artifacts:
path: test-results.xml

#########################################################
## Disables Config (Comment/Remove to re-enable CircleCI)
#########################################################
workflows:
version: 2
build-and-test:
jobs:
- build:
filters:
branches:
ignore: /.*/

0 comments on commit 00d3389

Please sign in to comment.