[fix] [#458] Catch invalid call on React Native, etc. #96
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: Graal tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| java: ['17'] | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: graalvm/setup-graalvm@v1 | |
| with: | |
| version: 'latest' | |
| java-version: ${{ matrix.java }} | |
| components: 'native-image' | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: DeLaGuardo/[email protected] | |
| with: | |
| lein: latest | |
| bb: latest | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: deps-${{ hashFiles('deps.edn') }} | |
| restore-keys: deps- | |
| - run: bb graal-tests |