mirror of
https://github.com/Azure/setup-helm.git
synced 2025-07-16 10:50:38 +00:00
* upgraded to Node16 * Enforce Prettier * code fix * Update package-lock.json resolved the conflicts. * executed prettier Co-authored-by: Vidya Reddy <vidyareddy@microsoft.com>
22 lines
439 B
YAML
22 lines
439 B
YAML
name: 'Run unit tests.'
|
|
on: # rebuild any PRs and main branch changes
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- 'releases/*'
|
|
push:
|
|
branches:
|
|
- main
|
|
- 'releases/*'
|
|
|
|
jobs:
|
|
build: # make sure build/ci works properly
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Run L0 tests.
|
|
run: |
|
|
npm install
|
|
npm test
|