fix(mercss): improve feature card grid layout #142
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 — merjs build & test | |
| on: | |
| push: | |
| branches: [main, "feature/**", "feat/**"] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Build & test | |
| steps: | |
| - name: Checkout merjs | |
| uses: actions/checkout@v4 | |
| - name: Setup Zig 0.16.0 | |
| uses: mlugg/setup-zig@v2 | |
| with: | |
| version: 0.16.0 | |
| - name: Build merjs | |
| run: | | |
| zig build codegen | |
| zig build | |
| - name: Verify binary | |
| run: test -f zig-out/bin/merjs | |
| # TODO: re-enable E2E tests once kuri is updated for Zig 0.16 | |
| # For now, just verify the build succeeds. |