Skip to content

fix(ci): gyp not working #29

fix(ci): gyp not working

fix(ci): gyp not working #29

Workflow file for this run

name: CI
on: [push]
env:
CI: true
jobs:
Test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- if: ${{ ! startsWith(matrix.os, 'windows') }}
run: python3 -m pip install setuptools
- name: Install dependencies
run: npm i --openssl_fips=''
- name: Rebuild dependencies for Electron
run: npx electron-rebuild
- name: Run tests
uses: coactions/setup-xvfb@v1
with:
run: npm test