Skip to content

Commit

Permalink
Add step names
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Sep 11, 2023
1 parent 27a1a2e commit 3ff46da
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@ jobs:
node: 'lts/*'

steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- name: Checkout
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac

- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
- name: Setup Node.js
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
with:
node-version: ${{ env.node }}
cache: 'yarn'

- run: yarn install --frozen-lockfile
- name: Install dependencies
run: yarn install --frozen-lockfile

- run: yarn run test:ci
- name: Run tests
run: yarn run test:ci

- name: Upload coverage report
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d
Expand Down

0 comments on commit 3ff46da

Please sign in to comment.