Set /std:c11 ccflag for Windows in Rust bindings (#354) #624
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: NodeJS | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
node: | |
- 16 | |
- 18 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup Node.js ${{matrix.node}} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{matrix.node}} | |
- name: Check formatting | |
if: matrix.os == 'ubuntu-latest' | |
working-directory: bindings/node.js | |
run: make format | |
- name: Build/test bindings | |
working-directory: bindings/node.js | |
run: make build test bundle | |
- name: Install distribution | |
working-directory: bindings/node.js/dist | |
run: npm install |