π· Enable oidc npm trusted publishing
#3687
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: CI | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| cache: "pnpm" | |
| node-version-file: ".node-version" | |
| - name: Install dependencies π¦ | |
| run: pnpm install | |
| - name: Lint π¨ | |
| run: pnpm turbo lint | |
| - name: TypeScript check π· | |
| run: pnpm turbo tscheck | |
| - name: Tests β | |
| run: pnpm turbo test |