Skip to content

Commit

Permalink
Add names to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeog committed Mar 8, 2024
1 parent 17f501d commit b531dde
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: |
npm ci
npm test
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test

0 comments on commit b531dde

Please sign in to comment.