mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
18 lines
298 B
YAML
18 lines
298 B
YAML
language: node_js
|
|
node_js:
|
|
- "node"
|
|
script:
|
|
- npm install
|
|
- npm run tslint
|
|
- npm run setup
|
|
- npm run unit-test
|
|
|
|
# public API changes check
|
|
- npm run api-extractor-ci
|
|
|
|
# circular references check
|
|
- cd tests && npm i
|
|
- node_modules/.bin/webpack --env.android
|
|
- node_modules/.bin/webpack --env.ios
|
|
|