enhancement: update to use env vars for WIF backend #21
Workflow file for this run
This file contains 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 Testing for TerraformTaskV4 | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
unit-test: | |
name: Unit Test V4 Task | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Run Unit Tests | |
run: | | |
cd Tasks/TerraformTask/TerraformTaskV4 | |
sudo npm install -include=dev | |
node -v | |
npm -v | |
npm bin | |
npm config list --json | |
npm test | |
ls src | |
ls Tests | |
ls -a node_modules | |
ls -a node_modules/.bin |