mirror of
https://github.com/Azure/setup-helm.git
synced 2025-09-04 02:56:32 +00:00
32 lines
761 B
YAML
32 lines
761 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
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- ubuntu-24.04-arm
|
|
- windows-latest
|
|
- windows-11-arm
|
|
- macos-latest # arm
|
|
- macos-13 # x64
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Run L0 tests.
|
|
run: |
|
|
npm install
|
|
npm test
|