Skip to content

Commit

Permalink
Merge pull request #18 from ctownshend/javascript-npm-nodegoat
Browse files Browse the repository at this point in the history
Javascript npm nodegoat
  • Loading branch information
ctownshend committed Aug 5, 2024
2 parents 2284cdf + e8aa50b commit a2cf51e
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: CI Build and scan
on: [push, pull_request]
env:
SONATYPE_LIFECYCLE_APPLICATION_ID : ${{ github.head_ref || github.ref_name }}
# SONATYPE_LIFECYCLE_APPLICATION_ID: $(echo "${{ github.repository }}" | cut -d '/' -f2)

jobs:
build:
name: Node.js
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version: ["14.x"]

steps:
- name: Checkout Nodegoat
uses: actions/checkout@master
with:
repository: OWASP/NodeGoat

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Check version
run: npm -v
- name: Run Build
run: npm install
- name: Run Build
run: npm pack
- name: Sonatype Lifecycle Policy Evaluation
uses: sonatype-nexus-community/iq-github-action@v2
with:
serverUrl: ${{ secrets.SONATYPE_LIFECYCLE_URL }}
username: ${{ secrets.SONATYPE_LIFECYCLE_USERNAME }}
password: ${{ secrets.SONATYPE_LIFECYCLE_PASSWORD }}
applicationId: ${{ env.SONATYPE_LIFECYCLE_APPLICATION_ID }}
stage: Build
target: ./

0 comments on commit a2cf51e

Please sign in to comment.