chore(deps): bump actions/checkout from 4 to 6 #168
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: 🧪 Test | |
| on: | |
| push: | |
| branches: | |
| - "*" | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: "🧪 Test" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: | |
| - 14 | |
| - 16 | |
| - 18 | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: ⬇️ Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: ⎔ Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 16 | |
| - name: 🟧 Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 8 | |
| run_install: | | |
| - recursive: true | |
| args: [--frozen-lockfile, --strict-peer-dependencies] | |
| - name: 🏗 Build | |
| run: pnpm run build | |
| - name: "🧪 Test: (OS: ${{ matrix.os }} Node: ${{ matrix.node }})" | |
| run: pnpm run test |