fix: align TS and node types for node: protocol support and CI stability #54
This file contains hidden or 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: Publish | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| env: | |
| PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '14.x' | |
| scope: '@foo-software' | |
| - name: Install | |
| run: | | |
| npm ci | |
| npm run lerna -- bootstrap --hoist | |
| - name: Publish Packages | |
| run: | | |
| echo '//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}' > ${{ github.workspace }}/.npmrc | |
| node packages/foo-api-ci-tools/dist/bin/config-git.js | |
| node packages/foo-api-ci-tools/dist/bin/publish-packages.js |