[ci] Test on node 24 #128
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 | |
| - pull_request | |
| permissions: {} | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| arch: | |
| - x64 | |
| node: | |
| - 20 | |
| - 22 | |
| - 24 | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| - windows-latest | |
| include: | |
| - arch: x86 | |
| node: 20 | |
| os: windows-latest | |
| - arch: x86 | |
| node: 22 | |
| os: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| architecture: ${{ matrix.arch }} | |
| - run: npm install | |
| - run: npm test | |
| build: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| arch: | |
| - x64 | |
| - x86 | |
| os: | |
| - macos-latest | |
| - ubuntu-22.04 | |
| - windows-latest | |
| exclude: | |
| - arch: x86 | |
| os: macos-latest | |
| - arch: x86 | |
| os: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| architecture: ${{ matrix.arch }} | |
| - run: npm install | |
| - run: npm run prebuild-darwin-x64+arm64 | |
| if: matrix.os == 'macos-latest' | |
| - run: | | |
| npm run prebuild | |
| npm run prebuild-linux-musl-x64 | |
| if: matrix.os == 'ubuntu-22.04' | |
| - run: npm run prebuild | |
| if: matrix.os == 'windows-latest' | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.os }}-${{ matrix.arch }} | |
| path: prebuilds | |
| retention-days: 1 | |
| release: | |
| needs: build | |
| permissions: | |
| contents: write # Needed for softprops/action-gh-release. | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| path: prebuilds | |
| - run: echo "version=$(git describe --tags)" >> $GITHUB_OUTPUT | |
| id: get_version | |
| - run: | |
| tar -cvf "${{ steps.get_version.outputs.version | |
| }}-darwin-x64+arm64.tar" -C "prebuilds/macos-latest-x64" | |
| darwin-x64+arm64 | |
| - run: | |
| tar -cvf "${{ steps.get_version.outputs.version }}-linux-x64.tar" -C | |
| "prebuilds/ubuntu-22.04-x64" linux-x64 | |
| - run: | |
| tar -cvf "${{ steps.get_version.outputs.version }}-win32-ia32.tar" -C | |
| "prebuilds/windows-latest-x86" win32-ia32 | |
| - run: | |
| tar -cvf "${{ steps.get_version.outputs.version }}-win32-x64.tar" -C | |
| "prebuilds/windows-latest-x64" win32-x64 | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| files: ${{ steps.get_version.outputs.version }}-*.tar | |
| token: ${{ secrets.GITHUB_TOKEN }} |