DRAFT: feat: add pnpm support #570
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - next | |
| pull_request: | |
| workflow_call: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/prepare-workspace | |
| - name: Run Lint | |
| run: pnpm run lint | |
| - name: Run Stylelint | |
| run: pnpm run stylelint | |
| - name: Run Tests | |
| run: pnpm run test:all | |
| - name: Run Bundle Size Test | |
| run: pnpm run test:size | |
| - name: Run Create IMA App Test | |
| run: pnpm run test:create-ima-app | |
| release: | |
| if: github.ref_name == 'master' || github.ref_name == 'next' | |
| needs: [ci] | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ./.github/actions/prepare-workspace | |
| - name: Release new versions | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: pnpm run release:publish | |
| - name: Create GitHub Releases | |
| uses: seznam/changeset-create-release@main | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |