Skip to content
This repository was archived by the owner on Dec 19, 2021. It is now read-only.

Commit 8d82bb0

Browse files
committed
fix builds
1 parent 43b6c63 commit 8d82bb0

File tree

3 files changed

+10
-60
lines changed

3 files changed

+10
-60
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
node-version: "10.x"
1818

1919
- name: Build Plugin Source
20-
run: cd src && npm i && npm i -g typescript && tsc
20+
run: cd src && npm i && npm i -g typescript@3.9.7 && tsc
2121

2222
- name: Lint
2323
run: cd src && npm run tslint

.github/workflows/weekly.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"scripts": {
3+
"ci.base.setup": "npm i -g [email protected] && echo no | npm i -g nativescript && tns usage-reporting disable && tns error-reporting disable && cd src && npm i && tsc",
4+
"ci.pip.install": "sudo pip install --upgrade pip && sudo pip install six",
5+
"ci.tslint": "cd src && npm run ci.tslint && cd ../demo && npm run ci.tslint",
6+
"ci.vanilla.android.build": "cd demo && tns build android --env.uglify",
7+
"ci.vanilla.ios.build": "cd demo && tns build ios --env.uglify"
8+
}
9+
}

0 commit comments

Comments
 (0)