Skip to content

Commit

Permalink
Merge pull request #229 from nobkd/chore/name-workflow-steps
Browse files Browse the repository at this point in the history
chore: add descriptive names to workflow steps
  • Loading branch information
tipiirai authored Mar 15, 2024
2 parents 217c5f5 + 1f2e400 commit 99d8096
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,17 @@ jobs:
# Testing `bun`
- uses: oven-sh/setup-bun@v1
if: ${{ matrix.env.tool == 'bun' }}
- run: |
- name: Install and test with Bun
run: |
bun -v
bun install
bun install --no-save esbuild@^0.19.11
bun test --coverage
if: ${{ matrix.env.tool == 'bun' }}

# Testing `node+jest`
- run: |
- name: Install and test with Node
run: |
node -v && npm -v
npm install
npm install --no-save jest jest-extended esbuild@^0.19.11
Expand Down

0 comments on commit 99d8096

Please sign in to comment.