mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-10 09:33:51 +00:00
23 lines
303 B
YAML
23 lines
303 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- "stable"
|
|
|
|
cache:
|
|
yarn: true
|
|
directories:
|
|
- node_modules
|
|
|
|
install:
|
|
- yarn install
|
|
|
|
script:
|
|
# - yarn inspect
|
|
- yarn test --coverage
|
|
- yarn build # Make sure the app can be built without errors
|
|
|
|
after_script:
|
|
- yarn ocular coverage/clover.xml
|
|
|
|
sudo: false
|