mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 13:36:29 +00:00
feat(contribution-types): added "Data" contribution (#231)
* feat(contribution-types): added "Data" contribution * Updated node and yarn versions to pass CI Co-authored-by: Maximilian Berkmann <maxieberkmann@gmail.com>
This commit is contained in:
parent
cc2585bfe5
commit
0993a90a57
4 changed files with 11 additions and 5 deletions
|
@ -2,7 +2,7 @@ version: 2.1
|
||||||
|
|
||||||
docker_defaults: &docker_defaults
|
docker_defaults: &docker_defaults
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/node:8.16.2
|
- image: circleci/node:12.14.0
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
prep_env:
|
prep_env:
|
||||||
|
@ -12,13 +12,15 @@ commands:
|
||||||
path: ~/repo
|
path: ~/repo
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
name: Restore node_modules cache
|
name: Restore node_modules cache
|
||||||
key: all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
|
key:
|
||||||
|
all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
|
||||||
save_env_cache:
|
save_env_cache:
|
||||||
description: Saves environment cache
|
description: Saves environment cache
|
||||||
steps:
|
steps:
|
||||||
- save_cache:
|
- save_cache:
|
||||||
name: Save node_modules cache
|
name: Save node_modules cache
|
||||||
key: all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
|
key:
|
||||||
|
all-contributors-cli-v2-{{ checksum "package.json" }}-{{ .Branch }}
|
||||||
paths:
|
paths:
|
||||||
- node_modules/
|
- node_modules/
|
||||||
|
|
||||||
|
|
2
.nvmrc
2
.nvmrc
|
@ -1 +1 @@
|
||||||
8.16.0
|
12.14.0
|
||||||
|
|
2
.yvmrc
2
.yvmrc
|
@ -1 +1 @@
|
||||||
1.9.2
|
1.21.1
|
||||||
|
|
|
@ -29,6 +29,10 @@ const defaultTypes = function(repoType) {
|
||||||
symbol: '🖋',
|
symbol: '🖋',
|
||||||
description: 'Content',
|
description: 'Content',
|
||||||
},
|
},
|
||||||
|
data: {
|
||||||
|
symbol: '🔣',
|
||||||
|
description: 'Data',
|
||||||
|
},
|
||||||
design: {
|
design: {
|
||||||
symbol: '🎨',
|
symbol: '🎨',
|
||||||
description: 'Design',
|
description: 'Design',
|
||||||
|
|
Loading…
Reference in a new issue