azure-setup-helm/.github/workflows/unit-tests.yml
dependabot[bot] 9651d9df52
Some checks are pending
Run prettify / Prettier Check (push) Waiting to run
Run unit tests. / build (macos-latest) (push) Waiting to run
Run unit tests. / build (ubuntu-24.04-arm) (push) Waiting to run
Run unit tests. / build (ubuntu-latest) (push) Waiting to run
Run unit tests. / build (windows-11-arm) (push) Waiting to run
Run unit tests. / build (windows-latest) (push) Waiting to run
Bump actions/checkout in /.github/workflows in the actions group (#251)
Bumps the actions group in /.github/workflows with 1 update: [actions/checkout](https://github.com/actions/checkout).


Updates `actions/checkout` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8e8c483db8...de0fac2e45)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-10 12:39:45 -08:00

30 lines
729 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
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Run L0 tests.
run: |
npm install
npm test