Skip to content

npm workflow

npm workflow #3

Workflow file for this run

name: "JFrog CLI Example"
on: push
permissions:
# This is required for requesting the OIDC token
id-token: write
# This is required for actions/checkout
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JFrog CLI
uses: jfrog/setup-jfrog-cli@v4
env:
# JFrog platform url (for example: https://acme.jfrog.io)
JF_URL: ${{ JF_URL }}

Check failure on line 19 in .github/workflows/npm.yml

View workflow run for this annotation

GitHub Actions / JFrog CLI Example

Invalid workflow file

The workflow is not valid. .github/workflows/npm.yml (Line: 19, Col: 19): Unrecognized named-value: 'JF_URL'. Located at position 1 within expression: JF_URL
with:
# OIDC provider name from the OIDC integration page in the JFrog Platform
oidc-provider-name: setup-jfrog-cli
- name: Run JFrog CLI
run: |
# Ping the server
jf rt ping
# Collect environment variables for the build
cd npm-example
jf npm-config --repo-resolve npm
jf npm i