Skip to content

Commit

Permalink
add test step to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld committed Oct 28, 2024
1 parent 9155c93 commit a0d6d93
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,15 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Test API Module
run: cd api && go test ./...
- name: Test Tool Module
- name: Test Go Tool Module
run: cd tool && go test ./...
- name: Test Go Consumable Module
run: cd api && go test ./...
- name: Setup node
uses: actions/setup-node@v4
- name: Test Typescript Consumable Module
run: cd api/sdkmeta-js && npm install && npm build

- name: Sanity test
run: |
cd tool && go run ./cmd/ingest -db test.sqlite3 \
Expand Down

0 comments on commit a0d6d93

Please sign in to comment.