We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae6228c commit f0f3344Copy full SHA for f0f3344
.github/workflows/test.yaml
@@ -96,18 +96,18 @@ jobs:
96
97
semantic:
98
name: "Semantic Release Dry Run"
99
- needs: [run-ci]
100
runs-on: ubuntu-latest
101
if: ${{ !github.event.pull_request.draft }}
102
steps:
103
- - name: Setup nodeJs
+ - id: checkout
+ name: Checkout Repository
104
+ uses: actions/checkout@v6
105
+
106
+ - name: Setup Nodejs
107
uses: actions/setup-node@v6
108
with:
109
node-version: ${{ env.NODE_VERSION }}
110
- - name: Check out code into the Go module directory
- uses: actions/checkout@v6
-
111
- name: Install dependencies
112
run: npm ci
113
0 commit comments