forked from facebook/metro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
77 lines (72 loc) · 1.82 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
commands:
yarn_install:
description: "A wrapper to yarn install with caching"
parameters:
working_directory:
type: string
default: ""
steps:
- restore_cache:
keys:
- dependencies-{{ .Branch }}-{{ checksum "yarn.lock" }}
# Fallback in case checksum fails
- dependencies-{{ .Branch }}-
- run:
command: NPM_TOKEN= yarn --no-progress
working_directory: << parameters.working_directory >>
- save_cache:
paths:
- node_modules
key: dependencies-{{ .Branch }}-{{ checksum "yarn.lock" }}
yarn_run:
description: "A wrapper to execute yarn commands in a safe way"
parameters:
working_directory:
type: string
default: ""
command:
type: string
steps:
- run:
command: NPM_TOKEN= yarn run << parameters.command >>
working_directory: << parameters.working_directory >>
version: 2.1
jobs:
run-js-checks:
docker:
- image: circleci/node:12
steps:
- checkout
- yarn_install
- yarn_run:
command: test-ci
test-node-12:
docker:
- image: circleci/node:12
steps:
- checkout
- yarn_install
- yarn_run:
command: jest -w 4
publish-to-npm:
docker:
- image: circleci/node:12
steps:
- checkout
- yarn_install
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
- run: npm run publish
- run: rm ~/.npmrc
# Workflows enables us to run multiple jobs in parallel
workflows:
version: 2
build-and-deploy:
jobs:
- run-js-checks
- test-node-12
- publish-to-npm:
filters:
branches:
ignore: /.*/
tags:
only: /v[0-9]+(\.[0-9]+)*/