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

ci: bump to v0.15.0 #556

Merged
merged 18 commits into from
Aug 14, 2019
Prev Previous commit
Next Next commit
more debug
  • Loading branch information
bartlomieju committed Aug 10, 2019
commit c6ec23f69025ed65e10ae7f8b145abadf99d3d1f
2 changes: 1 addition & 1 deletion .ci/template.common.yml
Original file line number Diff line number Diff line change
@@ -2,5 +2,5 @@ parameters:
exe_suffix: ""

steps:
- bash: deno${{ parameters.exe_suffix }} run --allow-run --allow-write --allow-read --allow-env format.ts --check; ls -lah; ls -lah testing; ls -lah ~/.deno/; ls -lah ~/.deno/gen/;
- bash: deno${{ parameters.exe_suffix }} run --allow-run --allow-write --allow-read --allow-env format.ts --check; ls -lah; ls -lah testing; ls -lah ~/deno_dir/; ls -lah ~/deno_dir/gen/;
- bash: deno${{ parameters.exe_suffix }} run --allow-run --allow-net --allow-write --allow-read --allow-env --config=tsconfig.test.json test.ts
2 changes: 1 addition & 1 deletion .ci/template.unix.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
steps:
- bash: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION)
- bash: echo '##vso[task.prependpath]$(HOME)/.deno/bin/'
- bash: echo '##vso[task.prependpath]$(HOME)/deno_dir/bin/'
2 changes: 1 addition & 1 deletion .ci/template.windows.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
steps:
- bash: npm install eslint@5.16.0 typescript@$(TS_VERSION) @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier
- powershell: iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 $(DENO_VERSION)
- bash: echo "##vso[task.prependpath]C:\Users\VssAdministrator\.deno\\bin"
- bash: echo "##vso[task.prependpath]C:\Users\VssAdministrator\deno_dir\\bin"
- bash: npx eslint **/*.ts --max-warnings=0
- template: ./template.common.yml
parameters:
1 change: 1 addition & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
variables:
DENO_VERSION: "v0.14.0"
TS_VERSION: "3.4.5"
DENO_DIR: $(HOME)/deno_dir/

# TODO Try to get eslint to run under Deno, like prettier
jobs: