Skip to content

Commit 5fce107

Browse files
committed
Add build and test workflow
1 parent dbb235d commit 5fce107

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/actions/clone-install/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ description: "Clones repository and sets up Node environment"
33
runs:
44
using: "composite"
55
steps:
6-
- name: Check out repository
7-
uses: actions/checkout@v4
8-
96
- name: Set up Node
107
uses: actions/setup-node@v4
118
with:

.github/workflows/publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
name: Publish NPM Package
1212

1313
steps:
14+
- name: Check out repository
15+
uses: actions/checkout@v4
16+
1417
- name: Clone and Install
1518
uses: ./.github/actions/clone-install
1619

.github/workflows/pull-request.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18+
- name: Check out repository
19+
uses: actions/checkout@v4
20+
1821
- name: Clone and Install
1922
uses: ./.github/actions/clone-install
2023

0 commit comments

Comments
 (0)