Port behavioural tests to JS. #4
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
| on: [push, pull_request] | |
| name: CI | |
| jobs: | |
| check: | |
| strategy: | |
| matrix: | |
| os: [macos-14, macos-15, macos-26] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v1 | |
| - name: Install ImageMagick | |
| run: env HOMEBREW_NO_AUTO_UPDATE=1 brew install imagemagick | |
| - name: Print macOS info | |
| run: system_profiler SPSoftwareDataType | |
| - run: make build | |
| - run: make lint | |
| - run: make test |