Skip to content

Commit

Permalink
Contributions guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
diberry committed Apr 29, 2024
1 parent a05698f commit 4d9352b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ This is a basic Express.js server used for JS Dev Experience documentation, in p
npm start
```

# Resources
## Contributions

* Legal files: If your PR removes the legal files, you PR will be closed.
* Azure Pipelines: Azure pipeline example files should be put in the `azure-pipelines` directory. The file name should indicate the type of pipeline. That should be the only file in your PR or it will be closed.


## Resources

* [Dev Containers](docs/devcontainer.md)
* [Sample: App Service full stack with Authentication](https://github.com/azure-samples/js-e2e-web-app-easy-auth-app-to-app)
Expand Down
26 changes: 26 additions & 0 deletions azure-pipelines/junit-test-result.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript

trigger:
- main

pool:
vmImage: ubuntu-latest

steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'

- script: |
npm install
npm run build
npm test
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: '**/TEST-*.xml'
displayName: 'npm install and build'

0 comments on commit 4d9352b

Please sign in to comment.