Update master with latest changes #22

Merged
Siklos merged 37 commits from dev into master 2022-08-09 12:18:01 -04:00
3 changed files with 28 additions and 2 deletions
Showing only changes of commit 60247d6f45 - Show all commits

View file

@ -8,7 +8,7 @@ steps:
commands:
- node ./test-server/node-http.js &
- npm install
- npm test
- npm run test:nowatch
---
kind: pipeline
@ -20,4 +20,4 @@ steps:
commands:
- node ./test-server/node-http.js &
- npm install
- npm test
- npm run test:nowatch

25
azure-pipelines.yml Normal file
View file

@ -0,0 +1,25 @@
# Node.js with React
# Build a Node.js project that uses React.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- master
- dev
- dev*
pool:
vmImage: ubuntu-latest
steps:
- task: NodeTool@0
inputs:
versionSpec: '16.x'
displayName: 'Install Node.js'
- script: |
node --version
node ./test-server/node-http.js &
npm install
npm run test:nowatch
displayName: 'npm install and test'

View file

@ -9,6 +9,7 @@
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:nowatch": "vitest run",
"coverage": "vitest run coverage"
},
"dependencies": {