Merge remote-tracking branch 'origin/main' into feature_refs_in_paths #2686
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: Builds, tests & co | |
| on: | |
| - push | |
| - pull_request | |
| permissions: read-all | |
| jobs: | |
| build-and-test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [24, 22, 20] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout tree | |
| uses: actions/checkout@v5 | |
| - name: Set-up Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| check-latest: true | |
| node-version: ${{ matrix.node-version }} | |
| package-manager-cache: false | |
| - run: corepack enable | |
| - run: yarn install --immutable | |
| - run: yarn format:check | |
| - run: yarn build | |
| - run: yarn test |