fix: Windows ACL検証のPowerShell timeoutを15秒へ緩和する #96
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: test (${{ matrix.os }} · node ${{ matrix.node-version }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| node-version: ['22.13.0', '22.x', '24.x'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Print versions | |
| run: | | |
| node --version | |
| npm --version | |
| - name: Run unit tests | |
| run: | | |
| if [[ "$RUNNER_OS" == "Windows" ]]; then | |
| npm test -- --test-concurrency=1 | |
| else | |
| npm test | |
| fi | |
| shell: bash | |
| - name: Verify CLI smoke (--version) | |
| run: node bin/throughline.mjs --version |