Skip to content

Fix package.json

Fix package.json #182

Workflow file for this run

name: Pull request checks
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
pull_request:
runs-on: windows-latest
permissions:
contents: read
id-token: write
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install node-gyp
run: npm install -g node-gyp
- name: Build package
run: npm run build