12 lines
203 B
YAML
12 lines
203 B
YAML
language: node_js
|
|
node_js:
|
|
- "10"
|
|
cache: yarn
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.10.1
|
|
install:
|
|
- yarn install
|
|
script:
|
|
- yarn lint
|
|
- yarn test
|