fix: update eslint-config peer deps #95
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: on-push-publish-to-npm | |
on: | |
push: | |
branches: | |
- master # Change this if not your default branch | |
paths: | |
- 'package.json' | |
jobs: | |
publish: | |
if: github.repository == 'adobe/aio-cli-plugin-app' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- run: npm install | |
- run: npm test | |
- uses: JS-DevTools/npm-publish@v1 | |
with: | |
token: ${{ secrets.ADOBE_BOT_NPM_TOKEN }} |