Skip to content

Commit

Permalink
CI: Minor changes to readability
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Aug 25, 2024
1 parent 8939828 commit 1a856b7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/nodejs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ jobs:

steps:

- uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v4

- uses: actions/setup-node@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x

Expand Down Expand Up @@ -50,18 +52,18 @@ jobs:

steps:

- name: 'Checkout the repository'
- name: Checkout repository
uses: actions/checkout@v4

- name: Test with Node.js ${{ matrix.node-version }}
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: yarn install

- name: Download build
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: build
Expand Down

0 comments on commit 1a856b7

Please sign in to comment.