Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] add windows to travis #721

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
f8b7a3e
add windows to travis
PopGoesTheWza Dec 16, 2019
2c2d20c
test
PopGoesTheWza Dec 16, 2019
46ee2c2
process.exit()
PopGoesTheWza Dec 16, 2019
adf398b
pre ts3.7 fix
PopGoesTheWza Dec 16, 2019
0334a3b
fix tsconfig
PopGoesTheWza Dec 16, 2019
c45fb8d
test2
PopGoesTheWza Dec 16, 2019
49256cf
await
PopGoesTheWza Dec 16, 2019
5b7f0d9
apis await
PopGoesTheWza Dec 16, 2019
754b33a
test3
PopGoesTheWza Dec 17, 2019
2a8a864
await open
PopGoesTheWza Dec 17, 2019
8dd143d
update `open` dependency
PopGoesTheWza Dec 17, 2019
ae398dc
open options
PopGoesTheWza Dec 17, 2019
54d3558
open options
PopGoesTheWza Dec 17, 2019
673c942
return
PopGoesTheWza Dec 17, 2019
d0547d3
missing ';'
PopGoesTheWza Dec 17, 2019
057b75c
process.exit
PopGoesTheWza Dec 17, 2019
7c55ffe
test output
PopGoesTheWza Dec 17, 2019
f014e7e
test process.exit
PopGoesTheWza Dec 17, 2019
b92a825
don't test process.exit on prompt
PopGoesTheWza Dec 17, 2019
faa7c29
full travis scope
PopGoesTheWza Dec 17, 2019
d19b76e
bump to trigger travis
PopGoesTheWza Dec 18, 2019
6ed6956
Merge branch 'master' into issue-717
PopGoesTheWza Jan 13, 2020
8e674a7
Merge branch 'master' of https://github.com/google/clasp into issue-717
PopGoesTheWza Jan 13, 2020
2a5d565
env & dependencies update
PopGoesTheWza Jan 13, 2020
5914e67
cleanup
PopGoesTheWza Jan 13, 2020
ad77239
autocomplete update
PopGoesTheWza Jan 13, 2020
5b88ead
Merge branch 'issue-717' of https://github.com/PopGoesTheWza/clasp in…
PopGoesTheWza Jan 13, 2020
5cb7595
awaiting open()
PopGoesTheWza Jan 13, 2020
4ba1530
rollback
PopGoesTheWza Jan 13, 2020
3678840
Windows test
PopGoesTheWza Jan 13, 2020
a10b8bb
Temporary limit Travis to win32 & node 8
PopGoesTheWza Jan 13, 2020
b26807a
restore tests
PopGoesTheWza Jan 13, 2020
5844cc2
experimental fix
PopGoesTheWza Jan 13, 2020
2aea4ca
throw url to investigate
PopGoesTheWza Jan 13, 2020
018ec14
force throw
PopGoesTheWza Jan 13, 2020
6062db9
comment out
PopGoesTheWza Jan 13, 2020
6f90160
Merge branch 'master' into issue-717
PopGoesTheWza Jan 14, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
node_modules/
node_modules
.npm
.env
.nyc_output
*.lock
/tmp

.nyc_output
coverage
tmp

.clasprc.json
package-lock.json # use yarn.lock

2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
*.ts
*.ts
32 changes: 17 additions & 15 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
sudo: enabled
os:
- linux
# - osx
# - linux
# - osx
- windows
language: node_js
node_js:
- node
- '10'
- '8'
# - "12"
# - "10"
- "8"
env:
global:
- SCRIPT_ID=1EwE84eZCSBPcaAiJzCnDjmxMVnLQrDyhSKq1oZY6q-3x4BIDHgQefCnL
- PROJECT_ID=project-id-3961473932623644264
- SCRIPT_ID=1EwE84eZCSBPcaAiJzCnDjmxMVnLQrDyhSKq1oZY6q-3x4BIDHgQefCnL
- PROJECT_ID=project-id-3961473932623644264
cache:
directories:
- "$HOME/.npm"
- "$HOME/.npm"
before_install:
- npm install -g npm@latest
# - npm install -g npm@latest
install:
- npm ci
- npm ci
before_script:
- npm run build
- echo -ne $CREDS | sed 's@\\@@g' > $HOME/.clasprc.json
- npm run build
- echo -ne $CREDS | sed 's@\\@@g' > $HOME/.clasprc.json
script:
- npm run lint
- npm run test
after_success: npm run coverage
- npm run lint
- npm run test
after_success:
- npm run coverage