Browse Source

👷 Added CI BUILD

main
Alexandre SOARES 4 years ago
parent
commit
ec68af25cd
  1. 23
      .circleci/config.yml

23
.circleci/config.yml

@ -0,0 +1,23 @@
workflows:
version: 2
build-test-and-lint:
jobs:
- build
version: 2
jobs:
build: &shared-config
docker:
- image: circleci/node:lts-fermium
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- dependencies-{{ checksum "package.json" }}-v1
- dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: dependencies-{{ checksum "package.json" }}-v1
Loading…
Cancel
Save