Skip to content

doc: complete code curly braces in async_worker.md #699

doc: complete code curly braces in async_worker.md

doc: complete code curly braces in async_worker.md #699

Workflow file for this run

name: Node.js CI Unix Platform
on: [push, pull_request]
jobs:
test:
timeout-minutes: 30
strategy:
matrix:
node-version: [ 14.x, 16.x, 18.x, 19.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@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
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