mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-08 19:46:41 +00:00
32 lines
608 B
YAML
32 lines
608 B
YAML
name: Test Actions
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- ".github/workflows/_internal-supported-version.yaml"
|
|
- "supported-version/**"
|
|
- "package-lock.json"
|
|
- "!**/*.md"
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- ".github/workflows/_internal-supported-version.yaml"
|
|
- "supported-version/**"
|
|
- "package-lock.json"
|
|
- "!**/*.md"
|
|
|
|
jobs:
|
|
unit-test:
|
|
if: "!startsWith(github.head_ref, 'release-please')"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- run: npm ci
|
|
shell: bash
|
|
|
|
- run: npm test
|
|
shell: bash |