Skip to content

Commit

Permalink
Add missing tests to CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dmurvihill committed Aug 4, 2023
1 parent 258ea43 commit 064251b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,24 @@ jobs:
with:
name: lib
path: ./lib
test:
runs-on: ubuntu-latest
needs: [ install-and-build ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: npm
cache-dependency-path: ./package-lock.json
- name: Download shared dist
uses: actions/download-artifact@v3
with:
name: lib
path: ./lib
- name: Link Dependencies
run: npm ci
- name: Test
run: npm test

0 comments on commit 064251b

Please sign in to comment.