mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 09:30:31 +03:00
20 lines
241 B
YAML
20 lines
241 B
YAML
|
language: node_js
|
||
|
|
||
|
node_js:
|
||
|
- "stable"
|
||
|
|
||
|
cache:
|
||
|
yarn: true
|
||
|
directories:
|
||
|
- node_modules
|
||
|
|
||
|
install:
|
||
|
- yarn install
|
||
|
|
||
|
script:
|
||
|
# - yarn inspect
|
||
|
- yarn test
|
||
|
- yarn build # Make sure the app can be built without errors
|
||
|
|
||
|
sudo: false
|