We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e3d908 commit 1b40b5cCopy full SHA for 1b40b5c
1 file changed
.circleci/config.yml
@@ -10,15 +10,12 @@ jobs:
10
- checkout
11
- node/install:
12
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)
+ - run:
+ name: Enable linger for current user (Linux only)
+ command: |
+ if [[ "$OSTYPE" == "linux"* ]]; then
+ loginctl enable-linger $(whoami)
+ fi
22
- run:
23
name: Install dependencies
24
command: npm ci
0 commit comments