Skip to content

fix cli auth

fix cli auth #3496

Workflow file for this run

name: Pre build ( Health check )
on:
push:
branches:
- 'master'
- 'develop'
pull_request:
branches:
- 'master'
- 'develop'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v2
- name: Setup npm
run: |
echo "@internxt:registry=https://npm.pkg.github.com" >> .npmrc
echo "//npm.pkg.github.com/:_authToken=${NPM_TOKEN}" >> .npmrc
echo "always-auth=true" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Build
run: npm run build