testing...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2025-10-16 15:20:29 +03:00
parent 96d544e314
commit 24a7c2ecf8

View File

@ -29,17 +29,19 @@ jobs:
- uses: actions/setup-node@v6
- if: ${{ matrix.os == 'windows-latest' }}
- name: Windows build dependencies
if: ${{ matrix.os == 'windows-latest' }}
run: |
choco install wget zip
- if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Ubuntu tweaks
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
# fixes an issue when running npx sandboxing...
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
- name: Check build dependencies
run: make check
#- name: Check build dependencies
# run: make check
- name: Pre-Build
run: make clean-all dev
@ -47,6 +49,11 @@ jobs:
- name: Build
run: make dist
- name: Check build
if: always()
run: |
ls -la ./build
- name: Release
env:
GH_TOKEN: ${{ github.token }}