chore(ci): ignore circle

This commit is contained in:
Daniel Sogl 2021-05-28 17:18:18 +02:00
parent ae0088d53b
commit 0074f6fd47

View File

@ -7,26 +7,26 @@ jobs:
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
key: ionic-site-{{ checksum "package.json" }} key: ionic-site-{{ checksum "package.json" }}
- run: - run:
name: Prepare ionic-site repo name: Prepare ionic-site repo
command: | command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then if [ "${CIRCLE_BRANCH}" == "master" ]; then
./scripts/docs/prepare.sh ./scripts/docs/prepare.sh
fi fi
- save_cache: - save_cache:
key: ionic-site-{{ checksum "package.json" }} key: ionic-site-{{ checksum "package.json" }}
paths: paths:
- ~/ionic-site/ - ~/ionic-site/
- restore_cache: - restore_cache:
key: node_modules_{{ checksum "package.json" }} key: node_modules_{{ checksum "package.json" }}
- run: - run:
name: Install node modules name: Install node modules
command: npm ci command: npm ci
- save_cache: - save_cache:
key: node_modules_{{ checksum "package.json" }} key: node_modules_{{ checksum "package.json" }}
paths: paths:
- ~/ionic-native/node_modules/ - ~/ionic-native/node_modules/
- run: - run:
name: Run tslint name: Run tslint
command: npm run lint command: npm run lint