mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-08 05:06:23 +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:
|
||||
- image: circleci/node:8.16.2
|
||||
- image: circleci/node:12.14.0
|
||||
|
||||
commands:
|
||||
prep_env:
|
||||
|
@ -12,13 +12,15 @@ commands:
|
|||
path: ~/repo
|
||||
- restore_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:
|
||||
description: Saves environment cache
|
||||
steps:
|
||||
- save_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:
|
||||
- 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: '🖋',
|
||||
description: 'Content',
|
||||
},
|
||||
data: {
|
||||
symbol: '🔣',
|
||||
description: 'Data',
|
||||
},
|
||||
design: {
|
||||
symbol: '🎨',
|
||||
description: 'Design',
|
||||
|
|
Loading…
Reference in a new issue