Skip to content

chore: bump version to v0.0.821 #242

chore: bump version to v0.0.821

chore: bump version to v0.0.821 #242

name: No String ID Hacks
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
jobs:
check-added-code:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.8
- name: Check added production code
env:
BASE_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }}
HEAD_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
run: bun scripts/check-no-string-id-hacks.ts "$BASE_SHA" "$HEAD_SHA"