name: 🧪 Unit Test on: pull_request: workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event.number || github.sha }} cancel-in-progress: true jobs: build: name: Unit Test (${{ matrix.node-name }}) runs-on: ubuntu-latest strategy: matrix: node-version: [20, 22, 24] include: - node-version: 20 node-name: LTS - node-version: 22 node-name: Current - node-version: 24 node-name: New steps: - uses: actions/checkout@v4 - name: Setup pnpm uses: pnpm/action-setup@v4 - name: Setup node uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Get pnpm store directory id: pnpm-cache run: | echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}-pnpm-store- - name: Install dependencies run: pnpm i --frozen-lockfile - name: Test run: pnpm test