Remove unnecessary comma in readme (#517) #1249
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: | |
- 18 | |
- 20 | |
- 22 | |
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: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install setuptools | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools | |
- 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 |