mirror of
https://github.com/azure/login.git
synced 2026-03-12 18:07:08 -04:00
* Initial commit
* updating package version
* adding secret info link in logs
* adding user-agent
* Update README.md
* Added changes for azure powershell login
Changes in loginAzurePowerShell.ts
using latest version
Added getlatestazmodule version
changes in runner info
code refactor
changes in loginAzurePowerShell
code refactor
Code refactor
Code refactor
added review comments
changes in scriptbuilder
changes in setmodulepath
added paths in tsconfig.json
Revert "added paths in tsconfig.json"
This reverts commit cb2f4176bf.
changes in action.yml
changes in main
added review comments
Added changes for review comments
Modified description in action.yml
Added telemetry info
Code refactor
added review comments
added review comments
removed tslint from package.json
added log in ServicePrincipalLogin
added boolean for error log
Added Unit tests (#15)
* Added unit tests for Azure PowerShell
* Added unit tests
* changes in utils
* removed babel
* changed variable name of enable-PSSession
* refactor
* added ci.yml
* changes in utils test
making login calls silent (#19)
Co-authored-by: Deepak Sattiraju <desattir@microsoft.com>
update utils test (#16)
* update utils test
* update utils test
* update serviceprincipallogin test
Co-authored-by: Microsoft GitHub User <msftgits@microsoft.com>
Co-authored-by: Sumiran Aggarwal <suaggar@microsoft.com>
Co-authored-by: UshaN <ushan@microsoft.com>
28 lines
497 B
YAML
28 lines
497 B
YAML
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build_test_job:
|
|
name: 'Build and test job'
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [windows-latest, ubuntu-latest, macos-latest]
|
|
steps:
|
|
|
|
- name: 'Checking out repo code'
|
|
uses: actions/checkout@v2
|
|
|
|
- name: 'Validate build'
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
|
|
- name: 'Run L0 tests'
|
|
run: |
|
|
npm run test |