Skip to content

Commit

Permalink
fix(rakkas): disable apparmor restrictions on GitHub Actions for now
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red committed Jan 10, 2025
1 parent f962520 commit 0e00031
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/rakkas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ export async function test(options: RunOptions) {
repo: 'rakkasjs/rakkasjs',
branch: 'main',
build: 'build',
// This is needed to run puppeteer in Ubuntu 23+
// https://github.com/puppeteer/puppeteer/pull/13196
beforeTest: process.env.GITHUB_ACTIONS
? 'echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns'
: undefined,
test: 'vite-ecosystem-ci',
})
}

0 comments on commit 0e00031

Please sign in to comment.