chore: update RumbleDB version to commit https://github.com/RumbleDB/… #287
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: Test CI | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| HUSKY: 0 | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 26 | |
| cache: pnpm | |
| - name: Set up Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: "17" | |
| cache: maven | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Generate grammar | |
| run: pnpm run generate:grammar | |
| - name: Build | |
| run: pnpm run build | |
| - name: Run tests | |
| run: pnpm test |