feat. 调整npm源、去除lisa info的账号登陆显示 #231
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [ push ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- name: NPM config | |
run: | | |
npm config set //registry-lpm.listenai.com/:_password ${{ secrets.LPM_ZHUOBIN_TOKEN }} | |
npm config set //registry-lpm.listenai.com/:username zbzhao | |
npm config set //registry-lpm.listenai.com/:email [email protected] | |
npm config set //registry-lpm.listenai.com/:always-auth true | |
- name: Install dependencies | |
run: npm install | |
- name: Run prepack | |
run: npm run prepack | |
- name: Run pospack | |
run: npm run prepack |