build(deps): bump step-security/harden-runner from 2.6.0 to 2.6.1 #921
Workflow file for this run
This file contains 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: Node.js CI Unix 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 ] | |
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: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.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.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 |