Merge pull request #1236 from xeroxinteractive/renovate/lerna-monorepo #616
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
on: | |
push: | |
branches: | |
- release | |
- next | |
name: Publish | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- run: pnpm install | |
- run: pnpm run lint | |
- run: pnpm run test | |
release: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Prepare repository | |
run: git fetch --unshallow --tags | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
- run: pnpm install | |
- run: node ./.github/scripts/apply-force-publish-labels.mjs | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- run: pnpm run deploy | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
SLACK_WEBHOOK_URL: ${{secrets.NPM_SLACK_WEBHOOK}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |