name: publish on: release: types: - created jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 # Setup .npmrc file to publish to npm - uses: actions/setup-node@v1 with: # Align the version of Node here with ci.yml. node-version: '14.x' registry-url: 'https://registry.npmjs.org' # Will also (through `prepare` hook): 1. install ./app, and 2. build - run: npm install --no-fund - run: npm test - run: npm run lint - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}