Update master with latest changes #22

Merged
Siklos merged 37 commits from dev into master 2022-08-09 12:18:01 -04:00
Showing only changes of commit 161a2cfb3e - Show all commits

View file

@ -11,7 +11,21 @@ trigger:
pool:
vmImage: ubuntu-latest
variables:
pnpm_config_cache: $(Pipeline.Workspace)/.pnpm-store
steps:
- task: Cache@2
inputs:
key: 'pnpm | "$(Agent.OS)" | pnpm-lock.yaml'
path: $(pnpm_config_cache)
displayName: Cache pnpm
- script: |
curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@7
pnpm config set store-dir $(pnpm_config_cache)
displayName: "Setup pnpm"
- task: NodeTool@0
inputs:
versionSpec: '16.x'
@ -21,8 +35,8 @@ steps:
node --version
node ./test-server/node-http.js &
jobs
npm ci
npm run test:nowatch
pnpm i
pnpm run test:nowatch
kill -2 %1 2>/dev/null
displayName: 'Test on Node.js 16.x LTS'
@ -35,7 +49,7 @@ steps:
node --version
node ./test-server/node-http.js &
jobs
npm ci
npm run test:nowatch
pnpm i
pnpm run test:nowatch
kill -2 %1 2>/dev/null
displayName: 'Test on Node.js 18.x Latest'