Fix iframe sizing to use actual content dimensions (#57) #59
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Verify no private URLs in package-lock.json | |
| run: '! grep -E "\"resolved\": \"https?://" package-lock.json | grep -v registry.npmjs.org' | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - run: npm install | |
| - run: npm run build | |
| - name: Build simple-host example | |
| working-directory: examples/simple-host | |
| run: | | |
| npm install | |
| npm run build | |
| - name: Build simple-server example | |
| working-directory: examples/simple-server | |
| run: | | |
| npm install | |
| npm run build | |
| - run: npm run prettier |