Updated script to remove all hard-coded settings except componentId #98
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
| # https://help.github.com/en/actions/automating-your-workflow-with-github-actions | |
| # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners | |
| # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/software-installed-on-github-hosted-runners | |
| # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#using-a-specific-shell | |
| # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions | |
| name: ActionsTest-Windows-Build | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Display the path | |
| shell: powershell | |
| run: echo ${env:PATH} | |
| - name: Version Display | |
| shell: powershell | |
| run: $PSVersionTable | |
| - name: Bootstrap | |
| shell: powershell | |
| run: ./actions_bootstrap.ps1 | |
| - name: Test and Build | |
| shell: powershell | |
| run: Invoke-Build -File .\src\PowerShellForLockpath.build.ps1 |