31 lines
627 B
YAML
31 lines
627 B
YAML
name: Run Tests
|
|
# Secrets can only viewed in "push" events. Not pull_request events.
|
|
# That's why this step needs to be called on push, and not on pull_request (to read npm password).
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
|
|
push-container-scan:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
registry-url: ${{ vars.NPM_REGISTRY }}
|
|
token: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Install npm dependencies
|
|
run: |
|
|
npm install -g pnpm
|
|
pnpm install
|
|
|
|
- name: Run Tests
|
|
run: |
|
|
pnpm test
|