mirror of
https://github.com/szimek/sharedrop.git
synced 2026-06-13 21:03:07 +08:00
25 lines
306 B
YAML
25 lines
306 B
YAML
---
|
|
language: node_js
|
|
node_js:
|
|
- "12"
|
|
|
|
dist: xenial
|
|
|
|
addons:
|
|
chrome: stable
|
|
|
|
cache:
|
|
yarn: true
|
|
|
|
env:
|
|
global:
|
|
# See https://git.io/vdao3 for details.
|
|
- JOBS=1
|
|
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
- export PATH=$HOME/.yarn/bin:$PATH
|
|
|
|
script:
|
|
- yarn test
|