chore: Release 0.5.3 #153
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: Run Nitrogen | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/run-nitrogen.yml' | |
| - 'src/specs/**' | |
| - '**/nitro.json' | |
| - '**/package.json' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/run-nitrogen.yml' | |
| - 'src/specs/**' | |
| - '**/nitro.json' | |
| - '**/package.json' | |
| jobs: | |
| lint: | |
| name: Run Nitrogen | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Install npm dependencies (bun) | |
| run: bun install | |
| - name: Build the typescript types | |
| run: bun run build | |
| - name: Run nitro-codegen for NitroImage | |
| run: bun image specs | |
| - name: Run nitro-codegen for NitroWebImage | |
| run: bun web-image specs | |
| - name: Verify no files have changed after nitrogen | |
| run: git diff --exit-code HEAD -- . ':(exclude)bun.lockb' |