feat(many): migrate from npm to pnpm #1340
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: AUTO npm release, docs deploy and ssr regression - on master | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| name: Release to npm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'pnpm' | |
| - name: Install packages. | |
| run: pnpm install --frozen-lockfile | |
| - name: Set up project. | |
| run: pnpm run bootstrap | |
| - name: Run tests. | |
| run: USE_REACT_STRICT_MODE=0 pnpm run test:vitest | |
| - name: Release to NPM | |
| env: | |
| NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
| NPM_EMAIL: ${{secrets.NPM_EMAIL}} | |
| NPM_USERNAME: ${{secrets.NPM_USERNAME}} | |
| run: pnpm run release | |
| tag: | |
| needs: release | |
| if: "startsWith(github.event.head_commit.message, 'chore(release)')" | |
| runs-on: ubuntu-latest | |
| name: Tag release commit | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up git identity | |
| run: git config --global user.name "instructure-ui-ci" && git config --global user.email "[email protected]" | |
| # -a -m is needed to make the tag "annotated". Lerna needs annotated tags to work correctly with verisons | |
| - name: Add tag | |
| run: git tag -a v$(./.github/workflows/calculateVersion.sh) -m v$(./.github/workflows/calculateVersion.sh) | |
| - name: Push tags | |
| run: git push origin v$(./.github/workflows/calculateVersion.sh) |