%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
name: node-gyp integration on: [push, pull_request] jobs: test: strategy: fail-fast: false matrix: os: [macos-latest, ubuntu-latest, windows-latest] python: ["3.6", "3.10"] runs-on: ${{ matrix.os }} steps: - name: Clone gyp-next uses: actions/checkout@v2 with: path: gyp-next - name: Clone nodejs/node-gyp uses: actions/checkout@v2 with: repository: nodejs/node-gyp path: node-gyp - uses: actions/setup-node@v3 with: node-version: 14.x - uses: actions/setup-python@v3 with: python-version: ${{ matrix.python }} - name: Install dependencies run: | cd node-gyp npm install --no-progress - name: Replace gyp in node-gyp shell: bash run: | rm -rf node-gyp/gyp cp -r gyp-next node-gyp/gyp - name: Run tests run: | cd node-gyp npm test