From fbc404e3c3de42983a1f8865fd5c592b0b85db74 Mon Sep 17 00:00:00 2001 From: Aliaksei Chapyzhenka Date: Mon, 28 Mar 2022 13:17:19 -0700 Subject: [PATCH] added macos napi test --- .github/workflows/macos-napi.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/macos-napi.yml diff --git a/.github/workflows/macos-napi.yml b/.github/workflows/macos-napi.yml new file mode 100644 index 0000000..6c5508c --- /dev/null +++ b/.github/workflows/macos-napi.yml @@ -0,0 +1,17 @@ +name: MacOS +on: [push, pull_request] +jobs: + test: + name: MacOS ${{ matrix.node-version }} + runs-on: macOS-latest + strategy: + matrix: + node-version: [12, 14, 16, 17] + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: npm i + - run: npm run mocha_napi