1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-27 01:29:14 -05:00
denoland-deno/azure-pipelines.yml

40 lines
1.9 KiB
YAML
Raw Normal View History

variables:
2019-05-04 11:33:50 -04:00
DENO_VERSION: "v0.4.0"
2019-04-27 14:18:53 -04:00
TS_VERSION: "3.4.5"
2019-03-04 19:53:35 -05:00
# TODO DRY up the jobs
# TODO Try to get eslint to run under Deno, like prettier
jobs:
2019-03-04 19:53:35 -05:00
- job: "Linux"
pool:
vmImage: "Ubuntu-16.04"
steps:
- script: npm install eslint typescript@$(TS_VERSION) @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier
- script: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION)
- script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/'
2019-04-24 07:41:23 -04:00
- script: npx eslint **/*.ts --max-warnings=0
2019-05-04 11:33:50 -04:00
- script: deno run --allow-run --allow-write --allow-read format.ts --check
- script: deno run --allow-run --allow-net --allow-write --allow-read test.ts
2019-03-04 19:53:35 -05:00
- job: "Mac"
pool:
vmImage: "macOS-10.13"
steps:
- script: npm -g install eslint typescript@$(TS_VERSION) @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint-config-prettier
- script: curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION)
- script: echo '##vso[task.prependpath]$(HOME)/.deno/bin/'
2019-04-24 07:41:23 -04:00
- script: eslint **/*.ts --max-warnings=0
2019-05-04 11:33:50 -04:00
- script: deno run --allow-run --allow-write --allow-read format.ts --check
- script: deno run --allow-run --allow-net --allow-write --allow-read test.ts
2019-03-04 19:53:35 -05:00
- job: "Windows"
pool:
vmImage: "vs2017-win2016"
steps:
- bash: npm install eslint 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"
2019-04-24 07:41:23 -04:00
- bash: npx eslint **/*.ts --max-warnings=0
2019-05-04 11:33:50 -04:00
- bash: deno.exe run --allow-run --allow-write --allow-read format.ts --check
- bash: deno.exe run --allow-run --allow-net --allow-write --allow-read test.ts