chore(deps): update mstruebing/editorconfig-checker docker tag to v3.… #1183
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: tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [22, 24] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: EditorConfig Lint | |
| uses: docker://mstruebing/editorconfig-checker:v3.11.1 | |
| - name: Enable corepack | |
| run: | | |
| corepack enable | |
| corepack prepare yarn@stable --activate | |
| - name: Install | |
| run: yarn | |
| - name: Build | |
| run: yarn build | |
| - name: Lint | |
| run: yarn lint | |
| - name: Check JSR publishing | |
| run: yarn publish:jsr --dry-run | |
| - name: Test | |
| run: | | |
| yarn coverage > COVERAGE_RESULT | |
| echo "$(cat COVERAGE_RESULT)" | |
| release: | |
| name: Release | |
| if: github.ref == 'refs/heads/master' && github.repository_owner == 'mikro-orm' | |
| runs-on: ubuntu-latest | |
| needs: [test] | |
| steps: | |
| - uses: apify/workflows/execute-workflow@main | |
| with: | |
| workflow: release.yml | |
| inputs: > | |
| { | |
| "ref": "${{ steps.commit.outputs.commit_long_sha || github.sha }}", | |
| "dist-tag": "next" | |
| } |