bump #527
Workflow file for this run
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: Test & Build | |
| on: [push] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: Test with Coverage | |
| run: pnpm run coverage | |
| - name: ESLint | |
| run: pnpm run eslint | |
| - name: Report Coverage | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: Install pnpm | |
| run: npm install -g pnpm | |
| - name: Build Dist | |
| run: pnpm build | |
| - name: Bundlewatch | |
| run: npx bundlewatch | |
| - name: Build Docs | |
| run: pnpm run build:docs |