Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore(deps): bump the all group across 1 directory with 6 updates#1566

chore(deps): bump the all group across 1 directory with 6 updates

chore(deps): bump the all group across 1 directory with 6 updates #1566

Workflow file for this run

name:Node.js CI Unix Platform
on:[push, pull_request]
env:
PYTHON_VERSION:'3.11'
permissions:
contents:read
jobs:
test:
timeout-minutes:30
strategy:
fail-fast:false
matrix:
api_version:
-standard
-experimental
node-version:
-20.x
-22.x
-24.x
-25.x
os:
-macos-latest
-ubuntu-latest
compiler:
-clang
-gcc
exclude:
-os:macos-latest
compiler:gcc# GCC is an alias for clang on the MacOS image.
runs-on:${{ matrix.os }}
steps:
-name:Harden Runner
uses:step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2# v2.13.2
with:
egress-policy:audit
-uses:actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3# v6.0.0
-name:Set up Python ${{ env.PYTHON_VERSION }}
uses:actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c# v6.0.0
with:
python-version:${{ env.PYTHON_VERSION }}
-name:Use Node.js ${{ matrix.node-version }}
uses:actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903# v6.0.0
with:
node-version:${{ matrix.node-version }}
-name:Check Node.js installation
run:|
node --version
npm --version
-name:Install dependencies
run:|
npm install
-name:npm test
run:|
if [ "${{ matrix.api_version }}" = "experimental" ]; then
export NAPI_VERSION=2147483647
fi
if [ "${{ matrix.compiler }}" = "gcc" ]; then
export CC="gcc" CXX="g++"
fi
if [ "${{ matrix.compiler }}" = "clang" ]; then
export CC="clang" CXX="clang++"
fi
echo "CC=\"$CC\" CXX=\"$CXX\""
echo "$CC --version"
$CC --version
echo "$CXX --version"
$CXX --version
export CFLAGS="$CFLAGS -O3 --coverage" LDFLAGS="$LDFLAGS --coverage"
echo "CFLAGS=\"$CFLAGS\" LDFLAGS=\"$LDFLAGS\""
npm run pretest -- --verbose
node test

[8]ページ先頭

©2009-2025 Movatter.jp