fix: doc comment malforming mdx table syntax #8
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: Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: # for manual triggering | |
| permissions: | |
| id-token: write # Required for OIDC trusted publishing | |
| contents: write # Required for creating releases | |
| pull-requests: write # Required for changesets to update PRs | |
| jobs: | |
| release: | |
| # prevents this action from running on forks | |
| if: github.repository == 'evoluhq/evolu' | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v2 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: "pnpm" | |
| registry-url: "https://registry.npmjs.org" | |
| - name: Ensure npm 11.5.1+ for trusted publishing | |
| run: npm install -g npm@latest | |
| - run: pnpm install --frozen-lockfile | |
| - name: Build | |
| run: pnpm build | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Lint Monorepo | |
| run: pnpm lint-monorepo | |
| - name: Check Circular Dependencies | |
| run: pnpm circular | |
| - name: Test | |
| run: pnpm test | |
| - name: Create Release Pull Request or Publish | |
| id: changesets | |
| uses: changesets/action@v1 | |
| with: | |
| publish: pnpm exec changeset publish | |
| createGithubReleases: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |