Skip to content

Commit

Permalink
feat: with mocked translation addon
Browse files Browse the repository at this point in the history
  • Loading branch information
paibamboo committed Nov 8, 2019
1 parent b10346f commit e680fa2
Show file tree
Hide file tree
Showing 9 changed files with 3,493 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
lib
node_modules
.idea
12 changes: 12 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.awcache
.vscode
__mocks__
config
coverage
node_modules
src
.dockerignore
.editorconfig
.gitignore
.npmignore
.travis.yml
40 changes: 40 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
language: node_js

node_js:
- "12"

env:
- NODE_ENV=ci

cache:
directories:
- node_modules
- /usr/local/lib/node_modules

before_install:
- npm install -g greenkeeper-lockfile@1
install:
- npm install

before_script: greenkeeper-lockfile-update

script:
- npm run build

after_script: greenkeeper-lockfile-upload

after_success:
- bash <(curl -s https://codecov.io/bash)

jobs:
include:
# Define the release stage that runs semantic-release
- stage: release
node_js: lts/*
# Advanced: optionally overwrite your default `script` step to skip the tests
# script: skip
deploy:
provider: script
skip_cleanup: true
script:
- npx semantic-release
Loading

0 comments on commit e680fa2

Please sign in to comment.