Skip to content

Commit

Permalink
Merge pull request #8 from actions/cleanup-test-workflow
Browse files Browse the repository at this point in the history
Cleanup formatting of test workflow
  • Loading branch information
James M. Greene authored and GitHub committed Aug 5, 2022
2 parents c95cb0d + 62a7d4f commit bcfa2c8
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3

- name: Set Node.JS
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Setup Node.JS
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'

- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test

0 comments on commit bcfa2c8

Please sign in to comment.