diff --git a/.github/actions/get-node-version/action.yml b/.github/actions/get-node-version/action.yml index a6ca397..06d1e2f 100644 --- a/.github/actions/get-node-version/action.yml +++ b/.github/actions/get-node-version/action.yml @@ -1,5 +1,5 @@ -name: 'Get node version' -description: 'Read node version defined in package.json' +name: Get node version +description: Read node version defined in package.json outputs: value: diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index c1b6562..920e2f5 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -1,3 +1,6 @@ +name: Prepare +description: Installs dependencies + runs: using: composite steps: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d7ecaa2..8001aad 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -2,7 +2,7 @@ name: PR validation on: pull_request: - types: [ready_for_review, opened, synchronize, reopened, push] + types: [ready_for_review, opened, synchronize, reopened, edited] branches: - main @@ -11,6 +11,17 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} jobs: + curl-npm-registry: + name: curl npm registry + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4.2.2 + + - uses: ./.github/actions/prepare + + - name: curl npm registry + run: curl https://registry.npmjs.org/@mands%2fnx-playwright + secret-scan: name: Secret scan runs-on: ubuntu-latest