fix: fix undefined document reads #49
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: hightide Dry run publish | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "packages/hightide/**" | |
| - ".github/workflows/hightide-publish-dry-run.yaml" | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 11.13.0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| registry-url: https://registry.npmjs.org | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm --filter @helpwave/hightide... run init | |
| - run: pnpm --filter @helpwave/hightide... run build | |
| - name: Check for version bump | |
| run: | | |
| node --input-type=module -e " | |
| import { execSync } from 'node:child_process'; | |
| import { readFileSync } from 'node:fs'; | |
| const { name, version } = JSON.parse(readFileSync('packages/hightide/package.json', 'utf8')); | |
| let published = ''; | |
| try { | |
| published = execSync(\`npm view \${name} version\`, { encoding: 'utf8' }).trim(); | |
| } catch { | |
| published = ''; | |
| } | |
| if (version === published) { | |
| console.log(\`❌ \${name}: version \${version} unchanged\`); | |
| process.exit(1); | |
| } | |
| console.log(\`✅ \${name}: \${published || 'unpublished'} -> \${version}\`); | |
| " | |
| - name: Dry run publish @helpwave/hightide | |
| run: pnpm --filter @helpwave/hightide publish --dry-run --no-git-checks --access public | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |