@abstract-foundation/agw-cli v0.1.2 #5
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: Publish | |
| on: | |
| release: | |
| types: [created] | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| registry-url: "https://registry.npmjs.org" | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm audit --prod --audit-level=high | |
| - run: pnpm --dir app install --frozen-lockfile | |
| - run: pnpm --dir app audit --prod --audit-level=high | |
| - name: App full audit (non-blocking visibility) | |
| run: pnpm --dir app audit --prod | |
| continue-on-error: true | |
| - run: pnpm check-types | |
| - run: pnpm lint | |
| - run: pnpm test | |
| - run: pnpm build | |
| - run: pnpm --filter @abstract-foundation/agw-cli publish --access public --no-git-checks --provenance | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |