| name: Node.js CI Windows Platform |
| |
| on: [push, pull_request] |
| |
| env: |
| PYTHON_VERSION: '3.11' |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| test: |
| timeout-minutes: 30 |
| strategy: |
| matrix: |
| node-version: [ 16.x, 18.x, 20.x ] |
| architecture: [x64, x86] |
| os: |
| - windows-2019 |
| - windows-2022 |
| runs-on: ${{ matrix.os }} |
| steps: |
| - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 |
| - name: Set up Python ${{ env.PYTHON_VERSION }} |
| uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 |
| with: |
| python-version: ${{ env.PYTHON_VERSION }} |
| - name: Use Node.js ${{ matrix.node-version }} |
| uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 |
| with: |
| node-version: ${{ matrix.node-version }} |
| architecture: ${{ matrix.architecture }} |
| - name: Check Node.js installation |
| run: | |
| node --version |
| npm --version |
| - name: Install dependencies |
| run: | |
| npm install |
| - name: npm test |
| run: | |
| npm run pretest -- --verbose |
| node test |