Account/instance domain model fields, Relay connections, and GraphQL tests #3
Workflow file for this run
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: main | |
| on: | |
| pull_request: | |
| push: | |
| branches: ["**"] | |
| tags: ["*.*.*"] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: jdx/mise-action@v4 | |
| with: | |
| cache: true | |
| experimental: true | |
| log_level: ${{ runner.debug == '1' && 'debug' || 'info' }} | |
| - run: mise build && mise check | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: jdx/mise-action@v4 | |
| with: | |
| cache: true | |
| experimental: true | |
| log_level: ${{ runner.debug == '1' && 'debug' || 'info' }} | |
| - run: mise test |