output service prefix, and use it for target (#55) #43
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| shared-actions-unit-test: | |
| name: Unit Test Shared Actions | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./shared-actions | |
| steps: | |
| - uses: "actions/checkout@v6" | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run unit tests | |
| run: npm run test |