Nuxt/.circleci/config.yml

149 lines
3.0 KiB
YAML
Raw Normal View History

2017-10-28 21:31:01 +00:00
version: 2
2018-03-19 07:16:11 +00:00
defaults: &defaults
2018-03-19 07:27:08 +00:00
working_directory: ~/project/nuxt
2018-03-19 07:16:11 +00:00
docker:
- image: banian/node-headless-chrome
2017-10-28 21:31:01 +00:00
jobs:
2018-03-19 07:37:52 +00:00
setup:
2018-03-19 07:16:11 +00:00
<<: *defaults
2017-10-28 21:31:01 +00:00
steps:
# Checkout repository
- checkout
# Restore cache
- restore_cache:
key: yarn-{{ checksum "yarn.lock" }}
# Install dependencies
- run:
name: Install Dependencies
command: NODE_ENV=dev yarn
# Keep cache
- save_cache:
key: yarn-{{ checksum "yarn.lock" }}
paths:
- "node_modules"
2018-03-19 07:27:08 +00:00
# Persist files
- persist_to_workspace:
root: ~/project
paths:
- nuxt
2018-03-19 07:16:11 +00:00
lint:
2018-03-19 07:21:50 +00:00
<<: *defaults
steps:
2018-03-19 07:27:08 +00:00
- attach_workspace:
2018-03-19 07:30:03 +00:00
at: ~/project
2018-03-19 07:21:50 +00:00
- run:
name: Lint
command: yarn test:lint
2017-11-24 16:17:27 +00:00
audit:
<<: *defaults
steps:
- attach_workspace:
at: ~/project
- run:
name: Security Audit
command: npm install --package-lock-only && npm audit --audit-level=moderate
2018-03-19 07:16:11 +00:00
build:
2018-03-19 07:21:50 +00:00
<<: *defaults
steps:
2018-03-19 07:27:08 +00:00
- attach_workspace:
2018-03-19 07:30:03 +00:00
at: ~/project
2018-03-19 07:21:50 +00:00
- run:
name: Build Fixtures
command: yarn build && yarn test:fixtures -w=4 --coverage && yarn coverage
2018-03-19 07:37:52 +00:00
- persist_to_workspace:
root: ~/project
paths:
- nuxt/test/fixtures
- nuxt/dist
environment:
- NODE_ENV: "test"
2018-03-19 07:16:11 +00:00
test-unit:
2018-03-19 07:21:50 +00:00
<<: *defaults
steps:
2018-03-19 07:27:08 +00:00
- attach_workspace:
2018-03-19 07:30:03 +00:00
at: ~/project
2018-03-19 07:21:50 +00:00
- run:
name: Unit Test
command: yarn test:unit -w=4 --coverage && yarn coverage
2018-03-19 08:22:00 +00:00
environment:
- NODE_ENV: "test"
test-e2e:
<<: *defaults
steps:
- attach_workspace:
at: ~/project
- run:
name: E2E Test
2018-03-19 15:49:16 +00:00
command: yarn test:e2e && yarn coverage
2018-03-19 07:42:56 +00:00
environment:
- NODE_ENV: "test"
2018-03-19 07:16:11 +00:00
release:
2018-03-19 07:21:50 +00:00
<<: *defaults
steps:
2018-03-19 07:27:08 +00:00
- attach_workspace:
2018-03-19 07:30:03 +00:00
at: ~/project
2018-03-19 07:21:50 +00:00
- run:
2018-03-19 07:30:03 +00:00
name: release
command: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
echo "//registry.yarnpkg.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc
BUILD_SUFFIX=edge yarn build
npm publish
for p in packages/*; do
if [ -f "$p/package.json" ]; then
cd $p
npm publish
cd -
fi
done
2018-03-19 07:16:11 +00:00
workflows:
version: 2
2018-03-19 07:37:52 +00:00
setup-and-parallel-test:
2018-03-19 07:16:11 +00:00
jobs:
2018-03-19 07:37:52 +00:00
- setup
2018-03-19 07:16:11 +00:00
- lint:
requires:
2018-03-19 07:37:52 +00:00
- setup
2018-03-19 07:16:11 +00:00
- audit:
requires:
- setup
2018-03-19 07:16:11 +00:00
- build:
requires:
2018-03-19 07:37:52 +00:00
- setup
2018-03-19 07:16:11 +00:00
- test-unit:
2018-03-19 07:16:11 +00:00
requires:
- build
2018-03-19 08:22:00 +00:00
- test-e2e:
requires:
- build
2018-03-19 07:16:11 +00:00
- release:
requires:
- build
- lint
- audit
- test-unit
2018-03-19 08:22:00 +00:00
- test-e2e
2018-03-27 22:33:23 +00:00
filters:
branches:
only:
- dev