Skip to content

Commit ddacdcc

Browse files
Fallback to circleci/node, remove gh vulnerabilities
1 parent ea4b803 commit ddacdcc

File tree

2 files changed

+18
-25
lines changed

2 files changed

+18
-25
lines changed

.circleci/config.yml

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
1-
version: 2.1
2-
3-
orbs:
4-
rn: react-native-community/[email protected]
1+
version: 2
52

63
jobs:
7-
checkout_code:
8-
executor: rn/linux_js
9-
steps:
10-
- checkout
11-
- persist_to_workspace:
12-
root: .
13-
paths: .
144
analyse:
15-
executor: rn/linux_js
5+
docker:
6+
- image: circleci/node:10
167
steps:
17-
- attach_workspace:
18-
at: .
19-
- rn/yarn_install
8+
- checkout
9+
- restore_cache:
10+
keys:
11+
- v1-dependencies-{{ checksum "package.json" }}
12+
- v1-dependencies-
13+
- run: yarn install
14+
- save_cache:
15+
paths:
16+
- node_modules
17+
key: v1-dependencies-{{ checksum "package.json" }}
2018
- run:
2119
name: Lint JS Code (ESLint)
2220
command: yarn run lint
@@ -30,4 +28,4 @@ workflows:
3028
- checkout_code
3129
- analyse:
3230
requires:
33-
- checkout_code
31+
- checkout_code

yarn.lock

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3171,15 +3171,10 @@ [email protected]:
31713171
resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c"
31723172
integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw=
31733173

3174-
lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.15:
3175-
version "4.17.15"
3176-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
3177-
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
3178-
3179-
lodash@^4.17.11, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.6.1:
3180-
version "4.17.11"
3181-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
3182-
integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
3174+
[email protected], lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.6.1:
3175+
version "4.17.13"
3176+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.13.tgz#0bdc3a6adc873d2f4e0c4bac285df91b64fc7b93"
3177+
integrity sha512-vm3/XWXfWtRua0FkUyEHBZy8kCPjErNBT9fJx8Zvs+U6zjqPbTUOpkaoum3O5uiA8sm+yNMHXfYkTUHFoMxFNA==
31833178

31843179
log-symbols@^2.2.0:
31853180
version "2.2.0"

0 commit comments

Comments
 (0)