Skip to content

Commit 1b40b5c

Browse files
committed
fix: circleCI config
1 parent 1e3d908 commit 1b40b5c

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

.circleci/config.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ jobs:
1010
- checkout
1111
- node/install:
1212
node-version: '24'
13-
- when:
14-
condition:
15-
matches:
16-
pattern: "^linux.*"
17-
value: << parameters.executor >>
18-
steps:
19-
- run:
20-
name: Enable linger for current user (Linux only)
21-
command: loginctl enable-linger $(whoami)
13+
- run:
14+
name: Enable linger for current user (Linux only)
15+
command: |
16+
if [[ "$OSTYPE" == "linux"* ]]; then
17+
loginctl enable-linger $(whoami)
18+
fi
2219
- run:
2320
name: Install dependencies
2421
command: npm ci

0 commit comments

Comments
 (0)