Skip to content

Commit 3600707

Browse files
committed
fix: ignore branch gh-pages in circleci build
1 parent 127a7e6 commit 3600707

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

.circleci/config.yml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,24 @@
1-
# Javascript Node CircleCI 2.0 configuration file
2-
#
3-
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4-
#
51
version: 2
62
jobs:
73
build:
84
docker:
9-
# specify the version you desire here
105
- image: circleci/node:10.11
11-
12-
# Specify service dependencies here if necessary
13-
# CircleCI maintains a library of pre-built images
14-
# documented at https://circleci.com/docs/2.0/circleci-images/
15-
# - image: circleci/mongo:3.4.4
16-
176
working_directory: ~/repo
18-
197
steps:
208
- checkout
21-
229
# Download and cache dependencies
2310
- restore_cache:
2411
keys:
2512
- v1-dependencies-{{ checksum "package.json" }}
2613
# fallback to using the latest cache if no exact match is found
2714
- v1-dependencies-
28-
2915
- run: yarn install
30-
3116
- save_cache:
3217
paths:
3318
- node_modules
3419
key: v1-dependencies-{{ checksum "package.json" }}
35-
3620
# run tests!
3721
- run: yarn test
38-
22+
branches:
23+
ignore:
24+
- gh-pages

0 commit comments

Comments
 (0)