Skip to content

Commit e08a2cf

Browse files
committed
feat: add CI: true env to build and test workflows
1 parent a8045fe commit e08a2cf

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on: push
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8+
env:
9+
CI: true
810
steps:
911
- name: Checkout code
1012
uses: actions/checkout@v2

.github/workflows/test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on: push
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8+
env:
9+
CI: true
810
steps:
911
- name: Checkout code
1012
uses: actions/checkout@v2

src/categories/js/build-workflow/config/default.config.ts

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ const content = readableMultilineString`
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11+
env:
12+
CI: true
1113
steps:
1214
- name: Checkout code
1315
uses: actions/checkout@v2

src/categories/js/test-workflow/config/default.config.ts

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ const content = readableMultilineString`
88
jobs:
99
test:
1010
runs-on: ubuntu-latest
11+
env:
12+
CI: true
1113
steps:
1214
- name: Checkout code
1315
uses: actions/checkout@v2

0 commit comments

Comments
 (0)