Use dynamic driver version and more updates #3892
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Unit Test Action | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main, release-* ] | |
| jobs: | |
| build-test: | |
| permissions: write-all | |
| name: Build & Run Unit Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Run Tests | |
| working-directory: ./content/docs/getting-started/installation/installationwizard/src | |
| run: | | |
| npm install | |
| npm test | |
| - name: Publish Test Results | |
| uses: EnricoMi/publish-unit-test-result-action@v2 | |
| if: always() | |
| with: | |
| files: | | |
| ./content/docs/getting-started/installation/installationwizard/src/reports/*.xml |