test #19
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 | |
| env: | |
| DEBUG: napi:* | |
| APP_NAME: rollup | |
| MACOSX_DEPLOYMENT_TARGET: '10.13' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - 'v*.*.**' | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| - reopened | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint and Audit | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout Commit | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Node | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: 24 | |
| - name: Restore Node dependencies cache | |
| id: cache-node-modules | |
| uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| node_modules | |
| ~/.npm | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
| restore-keys: node-modules-${{ runner.os }} | |
| - name: Install Node dependencies | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| run: npm install --ignore-scripts | |
| - name: Lint | |
| run: npm run ci:lint | |
| - name: Vulnerabilities | |
| run: npm audit | |
| - name: Optional Dependencies | |
| run: npm run test:package | |
| - name: CLI Docs | |
| run: npm run test:options | |
| - name: Generated Code | |
| run: | | |
| npm run build:ast-converters | |
| git diff HEAD --exit-code --ignore-space-at-eol | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| settings: | |
| # WASM | |
| - host: ubuntu-latest | |
| target: wasm32-unknown-unknown | |
| name: wasm | |
| is-wasm-build: true | |
| build: >- | |
| rustup default nightly-2025-07-25 && | |
| rustup target add wasm32-unknown-unknown && | |
| npm run build:wasm | |
| path: | | |
| wasm/ | |
| .empty | |
| - host: ubuntu-latest | |
| target: wasm32-unknown-unknown | |
| name: wasm-node | |
| is-wasm-build: true | |
| build: >- | |
| rustup default nightly-2025-07-25 && | |
| rustup target add wasm32-unknown-unknown && | |
| npm run build:wasm:node | |
| path: | | |
| wasm-node/ | |
| .empty | |
| # Windows | |
| - host: windows-latest | |
| build: RUSTFLAGS="-C target-feature=+crt-static" npm run build:napi -- --release | |
| target: x86_64-pc-windows-msvc | |
| - host: windows-latest | |
| build: npm run build:napi -- --release --target i686-pc-windows-msvc | |
| target: i686-pc-windows-msvc | |
| - host: windows-latest | |
| target: aarch64-pc-windows-msvc | |
| build: npm run build:napi -- --release --target aarch64-pc-windows-msvc | |
| # MacOS | |
| - host: macos-latest | |
| target: x86_64-apple-darwin | |
| build: npm run build:napi -- --release --target x86_64-apple-darwin | |
| - host: macos-latest | |
| target: aarch64-apple-darwin | |
| build: npm run build:napi -- --release --target aarch64-apple-darwin | |
| # Linux | |
| - host: ubuntu-latest | |
| target: x86_64-unknown-linux-gnu | |
| build: TARGET_CC=clang npm run build:napi -- --release --target x86_64-unknown-linux-gnu --use-napi-cross | |
| - host: ubuntu-latest | |
| target: x86_64-unknown-linux-musl | |
| build: npm run build:napi -- --release --target x86_64-unknown-linux-musl -x | |
| - host: ubuntu-latest | |
| target: armv7-unknown-linux-gnueabihf | |
| setup: | | |
| sudo apt-get update | |
| sudo apt-get install libatomic1-armhf-cross -y | |
| build: TARGET_CC=clang npm run build:napi -- --release --target armv7-unknown-linux-gnueabihf --use-napi-cross | |
| - host: ubuntu-latest | |
| target: armv7-unknown-linux-musleabihf | |
| build: npm run build:napi -- --release --target armv7-unknown-linux-musleabihf -x | |
| - host: ubuntu-latest | |
| target: aarch64-unknown-linux-gnu | |
| build: TARGET_CC=clang npm run build:napi -- --release --target aarch64-unknown-linux-gnu --use-napi-cross | |
| - host: ubuntu-latest | |
| target: aarch64-unknown-linux-musl | |
| build: npm run build:napi -- --release --target aarch64-unknown-linux-musl -x | |
| - host: ubuntu-latest | |
| target: armv7-linux-androideabi | |
| build: npm run build:napi -- --release --target armv7-linux-androideabi --use-napi-cross | |
| - host: ubuntu-latest | |
| target: aarch64-linux-android | |
| build: npm run build:napi -- --release --target aarch64-linux-android --use-napi-cross | |
| - host: ubuntu-latest | |
| target: riscv64gc-unknown-linux-gnu | |
| setup: | | |
| sudo apt-get update | |
| sudo apt-get install gcc-riscv64-linux-gnu g++-riscv64-linux-gnu -y | |
| build: >- | |
| rustup default nightly-2025-07-25 && | |
| rustup target add riscv64gc-unknown-linux-gnu && | |
| npm run build:napi -- --release --target riscv64gc-unknown-linux-gnu | |
| - host: ubuntu-latest | |
| target: riscv64gc-unknown-linux-musl | |
| docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine | |
| build: >- | |
| set -e && | |
| unset CC && | |
| export TARGET_CC=clang && | |
| apk add binutils-riscv64 && | |
| mkdir -p /sysroot-riscv64/etc/apk && | |
| echo 'https://dl-cdn.alpinelinux.org/alpine/edge/main' > /sysroot-riscv64/etc/apk/repositories && | |
| apk add -U --initdb --allow-untrusted --arch riscv64 --root /sysroot-riscv64 gcc musl-dev && | |
| export RUSTFLAGS=" | |
| -C link-args=-L$(echo /sysroot-riscv64/usr/lib/gcc/riscv64-alpine-linux-musl/*) | |
| -C link-args=-L/sysroot-riscv64/usr/lib | |
| -C linker=riscv64-alpine-linux-musl-ld | |
| " && | |
| rustup default nightly-2025-07-25 && | |
| rustup target add riscv64gc-unknown-linux-musl && | |
| npm run build:napi -- --release --target riscv64gc-unknown-linux-musl | |
| - host: ubuntu-latest | |
| target: powerpc64le-unknown-linux-gnu | |
| build: CC=clang TARGET_CC=clang npm run build:napi -- --release --target powerpc64le-unknown-linux-gnu --use-napi-cross | |
| - host: ubuntu-latest | |
| target: s390x-unknown-linux-gnu | |
| build: | | |
| export TARGET_CC=clang | |
| export CC=clang | |
| export CFLAGS="-fuse-ld=lld" | |
| npm run build:napi -- --release --target s390x-unknown-linux-gnu --use-napi-cross | |
| - host: ubuntu-latest | |
| target: loongarch64-unknown-linux-gnu | |
| setup: | | |
| sudo apt-get update | |
| sudo apt-get install gcc-13-loongarch64-linux-gnu -y | |
| sudo update-alternatives \ | |
| --install /usr/bin/loongarch64-linux-gnu-gcc loongarch64-linux-gnu-gcc /usr/bin/loongarch64-linux-gnu-gcc-13 100 \ | |
| --slave /usr/bin/loongarch64-linux-gnu-gcc-ar loongarch64-linux-gnu-gcc-ar /usr/bin/loongarch64-linux-gnu-gcc-ar-13 \ | |
| --slave /usr/bin/loongarch64-linux-gnu-gcc-nm loongarch64-linux-gnu-gcc-nm /usr/bin/loongarch64-linux-gnu-gcc-nm-13 \ | |
| --slave /usr/bin/loongarch64-linux-gnu-gcc-ranlib loongarch64-linux-gnu-gcc-ranlib /usr/bin/loongarch64-linux-gnu-gcc-ranlib-13 \ | |
| --slave /usr/bin/loongarch64-linux-gnu-gcov loongarch64-linux-gnu-gcov /usr/bin/loongarch64-linux-gnu-gcov-13 | |
| sudo update-alternatives \ | |
| --install /usr/bin/loongarch64-linux-gnu-cpp loongarch64-linux-gnu-cpp /usr/bin/loongarch64-linux-gnu-cpp-13 100 | |
| build: >- | |
| export CARGO_TARGET_LOONGARCH64_UNKNOWN_LINUX_GNU_LINKER=loongarch64-linux-gnu-gcc && | |
| rustup default nightly-2025-07-25 && | |
| rustup target add loongarch64-unknown-linux-gnu && | |
| npm run build:napi -- --release --target loongarch64-unknown-linux-gnu | |
| name: Build ${{ matrix.settings.name || matrix.settings.target }} | |
| runs-on: ${{ matrix.settings.host }} | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout Commit | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Node | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| if: ${{ !matrix.settings.docker }} | |
| with: | |
| node-version: 24 | |
| - name: Install Toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| if: ${{ !matrix.settings.docker }} | |
| with: | |
| toolchain: nightly-2025-07-25 | |
| targets: ${{ matrix.settings.target }} | |
| - name: Restore Cargo cache | |
| uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| .cargo-cache | |
| rust/target/ | |
| key: ${{ matrix.settings.name || matrix.settings.target }}-cargo-${{ matrix.settings.host }}-${{ hashFiles('rust/Cargo.lock') }} | |
| restore-keys: ${{ matrix.settings.name || matrix.settings.target }}-cargo-${{ matrix.settings.host }} | |
| - uses: goto-bus-stop/setup-zig@abea47f85e598557f500fa1fd2ab7464fcb39406 # v2.2.1 | |
| if: ${{ contains(matrix.settings.target, 'musl') }} | |
| with: | |
| version: 0.14.1 | |
| - name: Install cargo-zigbuild | |
| uses: taiki-e/install-action@a416ddeedbd372e614cc1386e8b642692f66865e # v2.57.1 | |
| if: ${{ contains(matrix.settings.target, 'musl') }} | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| with: | |
| tool: cargo-zigbuild | |
| - name: Setup toolchain | |
| run: ${{ matrix.settings.setup }} | |
| if: ${{ matrix.settings.setup }} | |
| shell: bash | |
| - name: Restore Node dependencies cache | |
| id: cache-node-modules | |
| uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| node_modules | |
| ~/.npm | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
| restore-keys: node-modules-${{ runner.os }} | |
| - name: Install Node dependencies | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| run: npm ${{ github.ref == 'refs/heads/master' && 'ci' || 'install' }} --ignore-scripts | |
| - name: Save Node dependencies cache | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' && github.ref == 'refs/heads/master' | |
| uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| node_modules | |
| ~/.npm | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
| - name: Build in docker | |
| uses: addnab/docker-run-action@4f65fabd2431ebc8d299f8e5a018d79a769ae185 # v3 | |
| if: ${{ matrix.settings.docker }} | |
| with: | |
| image: ${{ matrix.settings.docker }} | |
| options: '--user 0:0 -v ${{ github.workspace }}/.cargo-cache/git/db:/usr/local/cargo/git/db -v ${{ github.workspace }}/.cargo/registry/cache:/usr/local/cargo/registry/cache -v ${{ github.workspace }}/.cargo/registry/index:/usr/local/cargo/registry/index -v ${{ github.workspace }}:/build -w /build' | |
| run: ${{ matrix.settings.build }} | |
| - name: Build | |
| run: ${{ matrix.settings.build }} | |
| if: ${{ !matrix.settings.docker }} | |
| shell: bash | |
| - name: Save Cargo cache | |
| if: github.ref == 'refs/heads/master' | |
| uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| .cargo-cache | |
| rust/target/ | |
| key: ${{ matrix.settings.name || matrix.settings.target }}-cargo-${{ matrix.settings.host }}-${{ hashFiles('rust/Cargo.lock') }} | |
| - name: Upload wasm artifact | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: bindings-${{ matrix.settings.name }} | |
| path: ${{ matrix.settings.path }} | |
| if-no-files-found: error | |
| if: ${{ matrix.settings.is-wasm-build }} | |
| - name: Upload napi artifact | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: bindings-${{ matrix.settings.target }} | |
| path: ${{ env.APP_NAME }}.*.node | |
| if-no-files-found: error | |
| if: ${{ !matrix.settings.is-wasm-build }} | |
| build-freebsd: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| settings: | |
| - name: freebsd | |
| architecture: x86-64 | |
| version: '14.2' | |
| target: x86_64-unknown-freebsd | |
| - name: freebsd | |
| architecture: arm64 | |
| version: '14.2' | |
| target: aarch64-unknown-freebsd | |
| name: Build ${{ matrix.settings.name }} ${{ matrix.settings.architecture }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout Commit | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Restore Cargo cache | |
| uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| .cargo-cache | |
| rust/target/ | |
| key: ${{ matrix.settings.target }}-cargo-${{ hashFiles('rust/Cargo.lock') }} | |
| restore-keys: ${{ matrix.settings.target }}-cargo | |
| - name: Restore Node dependencies cache | |
| id: cache-node-modules | |
| uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| node_modules | |
| ~/.npm | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
| restore-keys: node-modules-${{ runner.os }} | |
| - name: Build | |
| uses: cross-platform-actions/action@e8a7b572196ff79ded1979dc2bb9ee67d1ddb252 # v0.29.0 | |
| with: | |
| operating_system: ${{ matrix.settings.name }} | |
| architecture: ${{ matrix.settings.architecture }} | |
| version: ${{ matrix.settings.version }} | |
| memory: 8G | |
| run: | | |
| sudo pkg install -y node npm rust cmake | |
| ${{ steps.cache-node-modules.outputs.cache-hit != 'true' && 'npm install --ignore-scripts' || 'echo Cache hit' }} | |
| npm run build:napi -- --release --target ${{ matrix.settings.target }} | |
| - name: Save Cargo cache | |
| if: github.ref == 'refs/heads/master' | |
| uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| .cargo-cache | |
| rust/target/ | |
| key: ${{ matrix.settings.target }}-cargo-${{ hashFiles('rust/Cargo.lock') }} | |
| - name: Upload napi artifact | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: bindings-${{ matrix.settings.target }} | |
| path: ${{ env.APP_NAME }}.*.node | |
| if-no-files-found: error | |
| # smoke test for some architectures that do not receive the full test suite | |
| smoke-test: | |
| permissions: | |
| packages: write # for caching container images | |
| name: Smoke Test ${{ matrix.settings.target }} | |
| needs: | |
| - build | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| settings: | |
| - arch: aarch64 | |
| distro: ubuntu_latest | |
| target: aarch64-unknown-linux-gnu | |
| - arch: aarch64 | |
| distro: alpine_latest | |
| target: aarch64-unknown-linux-musl | |
| - arch: armv7 | |
| distro: ubuntu_latest | |
| target: armv7-unknown-linux-gnueabihf | |
| # There is a bug that hangs the build when running npm | |
| # - arch: armv7 | |
| # distro: alpine_latest | |
| # target: armv7-unknown-linux-musleabihf | |
| # This one has become very flaky as of late | |
| # - arch: ppc64le | |
| # distro: ubuntu_latest | |
| # target: powerpc64le-unknown-linux-gnu | |
| # use-nvm: true | |
| - arch: s390x | |
| distro: ubuntu_latest | |
| target: s390x-unknown-linux-gnu | |
| use-nvm: true | |
| # I could not find a way to install Node without compiling from source | |
| # - arch: riscv64 | |
| # distro: ubuntu_latest | |
| # target: riscv64gc-unknown-linux-gnu | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 120 | |
| steps: | |
| - name: Checkout Commit | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Restore Node dependencies cache | |
| id: cache-node-modules | |
| uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| node_modules | |
| ~/.npm | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
| restore-keys: node-modules-${{ runner.os }} | |
| - name: Install Node dependencies | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| run: npm install --ignore-scripts | |
| - name: Build JS | |
| run: npm run build:cjs | |
| - name: Download napi artifacts | |
| uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 | |
| with: | |
| name: bindings-${{ matrix.settings.target }} | |
| path: dist/ | |
| - name: Run Smoke Test | |
| uses: uraimo/run-on-arch-action@d94c13912ea685de38fccc1109385b83fd79427d # v3.0.1 | |
| with: | |
| arch: ${{ matrix.settings.arch }} | |
| distro: ${{ matrix.settings.distro }} | |
| githubToken: ${{ github.token }} | |
| install: | | |
| case "${{ matrix.settings.distro }}" in | |
| ubuntu*) | |
| apt-get update -y | |
| apt-get install -y curl git | |
| if [[ -z "${{ matrix.settings.use-nvm }}" ]]; then | |
| curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - | |
| apt-get install -y nodejs | |
| fi | |
| ;; | |
| alpine*) | |
| apk add nodejs npm git | |
| ;; | |
| esac | |
| run: | | |
| set -e | |
| if [[ -n "${{ matrix.settings.use-nvm }}" ]]; then | |
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash | |
| source ~/.nvm/nvm.sh | |
| nvm install --lts | |
| fi | |
| echo "Node: $(node -v)" | |
| echo "npm: $(npm -v)" | |
| git config --global --add safe.directory /home/runner/work/rollup/rollup | |
| chmod +x dist/bin/rollup | |
| dist/bin/rollup --version | grep -E 'rollup v[0-9]+\.[0-9]+\.[0-9]+' | |
| mv dist dist-build | |
| node dist-build/bin/rollup --config rollup.config.ts --configPlugin typescript --configTest --forceExit | |
| cp dist-build/rollup.*.node dist/ | |
| dist/bin/rollup --version | grep -E 'rollup v[0-9]+\.[0-9]+\.[0-9]+' | |
| test: | |
| name: Test${{ matrix.additionalName || '' }} Node ${{ matrix.node }} (${{ matrix.settings.target }}) | |
| needs: | |
| - build | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| settings: | |
| - host: ubuntu-latest | |
| target: x86_64-unknown-linux-gnu | |
| - host: windows-latest | |
| target: x86_64-pc-windows-msvc | |
| - host: macos-latest | |
| target: aarch64-apple-darwin | |
| node: | |
| - '18.20.0' | |
| - 24 | |
| include: | |
| - settings: | |
| host: ubuntu-latest | |
| target: x86_64-unknown-linux-gnu | |
| node: 24 | |
| command: 'ci:coverage' | |
| additionalName: ' with Coverage' | |
| coverage: true | |
| - settings: | |
| host: ubuntu-latest | |
| target: x86_64-unknown-linux-gnu | |
| node: '18.20.0' | |
| command: 'ci:test:all' | |
| additionalName: ' with Additional Tests' | |
| runs-on: ${{ matrix.settings.host }} | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout Commit | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Node | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| - name: Restore Node dependencies cache | |
| id: cache-node-modules | |
| uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| node_modules | |
| ~/.npm | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
| restore-keys: node-modules-${{ runner.os }} | |
| - name: Install Node dependencies | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| run: npm install --ignore-scripts | |
| - name: Download napi artifacts | |
| uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 | |
| with: | |
| name: bindings-${{ matrix.settings.target }} | |
| path: . | |
| - name: Download wasm artifacts | |
| uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 | |
| with: | |
| name: bindings-wasm | |
| - name: Build and test Rollup | |
| run: npm run ${{ matrix.command || 'ci:test:only' }} | |
| env: | |
| CI: true | |
| - name: Upload coverage | |
| uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3 | |
| if: matrix.coverage | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| commit_parent: ${{ github.event.pull_request.head.sha }} | |
| publish: | |
| permissions: | |
| pull-requests: write # for writing comments | |
| issues: write # for writing comments | |
| contents: write # for creating a release | |
| name: Publish | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| needs: | |
| - lint | |
| - build-freebsd | |
| - test | |
| - smoke-test | |
| # This needs to be adapted for Rollup 5 | |
| if: startsWith(github.ref_name, 'v4') | |
| steps: | |
| - name: Checkout Commit | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| # Necessary to find the commits included in the release | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| - name: Restore Node dependencies cache | |
| id: cache-node-modules | |
| uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| node_modules | |
| ~/.npm | |
| key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} | |
| restore-keys: node-modules-${{ runner.os }} | |
| - name: Install Node dependencies | |
| if: steps.cache-node-modules.outputs.cache-hit != 'true' | |
| run: npm install --ignore-scripts | |
| - name: Download all artifacts | |
| uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0 | |
| with: | |
| path: artifacts | |
| - name: Copy wasm files | |
| run: cp -R artifacts/bindings-wasm/wasm . | |
| - name: Build JavaScript | |
| run: npm run build:cjs && cp artifacts/*/*.node dist/ && npm run build:bootstrap | |
| - name: Move artifacts | |
| run: npm run ci:artifacts | |
| - name: Publish | |
| run: | | |
| if git --no-pager log -1 --pretty=%B | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+$"; | |
| then | |
| echo "Publishing regular release" | |
| echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc | |
| npm publish --access public | |
| elif git --no-pager log -1 --pretty=%B | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+-[0-9]\+$"; | |
| then | |
| echo "Publishing beta release" | |
| echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc | |
| npm publish --tag beta --access public | |
| else | |
| echo "Not a release, skipping publish" | |
| fi | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| ROLLUP_RELEASE: 'releasing' |