Skip to content

add

add #2996

Workflow file for this run

name: Verify changes
on:
push:
branches:
- fix/test-publish
jobs:
verify:
name: Test Publish
runs-on: ubuntu-latest
steps:
- uses: google/wireit@setup-github-actions-caching/v1
- uses: actions/checkout@v2
- name: Sanity check
run: node ./scripts/lock-scan.js
- name: Setup Node 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Npm config set
run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" && npm whoami
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Npm config list
run: npm config list
- name: Print .npmrc
run: cat $HOME/.npmrc
- name: Npm who am I
run: npm whoami