Run mandatory-deny-paths tests in CI

These exercise enableWeakerNestedSandbox — the two tests that broke
when apply-seccomp started nesting namespaces. Add explicitly until
the full-suite CI change lands.
This commit is contained in:
Dylan Conway
2026-03-31 12:33:54 -07:00
parent 72e477b62d
commit 21206e6b73

View File

@@ -2,9 +2,9 @@ name: Tests
on:
push:
branches: [ "**" ]
branches: ['**']
pull_request:
branches: [ "**" ]
branches: ['**']
jobs:
integration-tests:
@@ -82,6 +82,13 @@ jobs:
- name: Run integration tests
run: npm run test:integration
- name: Run mandatory-deny-paths tests (Linux)
if: matrix.os == 'linux'
# Exercises enableWeakerNestedSandbox — the two tests that broke
# when apply-seccomp started nesting namespaces. Add explicitly
# until the full-suite CI change lands.
run: bun test test/sandbox/mandatory-deny-paths.test.ts
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4