OleksiiKachan/wonder-engine

View on GitHub
.github/workflows/pr.yml

Summary

Maintainability
Test Coverage
name: PR Checks

on:
  pull_request:
    types: [opened, reopened, labeled, synchronize]

jobs:
  build:
    name: Core Unit Tests node-${{ matrix.node_version }}, ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        node_version: [20, 22]
        include:
          - os: macos-latest
            node_version: 22
          - os: windows-latest
            node_version: 22
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v4
      - name: Set node version to ${{ matrix.node_version }}
        uses: actions/setup-node@v4
        with:
          node-version: ${{ matrix.node_version }}
          cache: yarn
      - name: install
        run: yarn install --immutable
      - name: test
        run: yarn test
      - name: build
        run: yarn build