Skip to content

Commit 6b8ac5d

Browse files
Merge branch 'Xetera:master' into smooth-scroll-behavior
2 parents f2c1d2a + 1343d81 commit 6b8ac5d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/compile.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121
- name: Install dependencies and build
2222
run: yarn
2323
- name: Run tests
24-
run: yarn test
24+
run: |
25+
# See: https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md
26+
echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
27+
yarn test
2528
- name: Upload compiled code as artifact
2629
uses: actions/upload-artifact@v4
2730
with:

.npmignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
index.html
21
node_modules
32
.vscode
43
.cache
54
dist
6-
test.ts
5+
__test__

0 commit comments

Comments
 (0)