Files
github-actions-magento2/.github/workflows/_internal_test_actions.yaml
T
dependabot[bot] 00939b1609 chore(deps): bump actions/checkout from 3 to 4 (#114)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-22 09:43:15 -04:00

31 lines
545 B
YAML

name: Test Actions
on:
push:
branches:
- main
paths:
- ".github/workflows/_internal-supported-version.yaml"
- "supported-version/**"
- "package.json"
- "!(**/*.md)"
pull_request:
branches:
- main
paths:
- ".github/workflows/_internal-supported-version.yaml"
- "supported-version/**"
- "package.json"
- "!(**/*.md)"
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
shell: bash
- run: npm test
shell: bash