Skip to content

Commit 28c8067

Browse files
authored
Merge pull request #260 from sikepuri-algorithm/update-ci
Update ci
2 parents bb98888 + b1e400a commit 28c8067

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Build Test
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: Checkout
11+
- name: Checkout Code
1212
uses: actions/checkout@v3
1313

1414
- name: Build

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Build and Deploy
1515
runs-on: ubuntu-latest
1616
steps:
17-
- name: Checkout
17+
- name: Checkout Code
1818
uses: actions/checkout@v3
1919
with:
2020
fetch-depth: 0

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Check Changes
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: Checkout
11+
- name: Checkout Code
1212
uses: actions/checkout@v3
1313

1414
- name: Check Changes

.github/workflows/notebook-execution-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Notebook Execution Test
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: Checkout
11+
- name: Checkout Code
1212
uses: actions/checkout@v3
1313

1414
- name: Execute Notebooks

.github/workflows/preview.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy PR Previews
1+
name: Deploy PR Preview
22

33
on:
44
pull_request:
@@ -16,10 +16,10 @@ concurrency: preview-${{ github.ref }}
1616

1717
jobs:
1818
deploy-preview:
19-
name: Deploy PR Previews
19+
name: Deploy PR Preview
2020
runs-on: ubuntu-latest
2121
steps:
22-
- name: Checkout
22+
- name: Checkout Code
2323
uses: actions/checkout@v3
2424
with:
2525
fetch-depth: 0
@@ -32,7 +32,7 @@ jobs:
3232
id: base-url
3333
with:
3434
script: |
35-
const prNumber = "${{ github.event.number }}"; // <pr-number>
35+
const prNumber = "${{ github.event.number }}"; // pr-number
3636
const baseUrl = `/pr-preview/pr-${prNumber}`;
3737
return baseUrl; // /pr-preview/pr-<pr-number>
3838
result-encoding: string

0 commit comments

Comments
 (0)