Skip to content

Commit

Permalink
ci(client-vms): surface test coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-hm committed Nov 4, 2024
1 parent d3da48a commit a9ce9cf
Showing 1 changed file with 28 additions and 19 deletions.
47 changes: 28 additions & 19 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ concurrency:

jobs:
check:
if: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -25,33 +26,41 @@ jobs:
- run: pnpm exec tsc -p client-vms/tsconfig.json

test-client-vms:
needs: check
# needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Aws credentials are required so that nilup can access rc builds
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: "eu-west-1"
- uses: NillionNetwork/nillion-setup-action@main
with:
version: "v0.7.0-rc.38"
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: |
cd client-vms/tests-nada-programs
./build.sh
# - uses: aws-actions/configure-aws-credentials@v4
# with:
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# aws-region: "eu-west-1"
# - uses: NillionNetwork/nillion-setup-action@main
# with:
# version: "v0.7.0-rc.38"
# - uses: actions/setup-python@v5
# with:
# python-version: "3.12"
# - run: |
# cd client-vms/tests-nada-programs
# ./build.sh
- uses: actions/setup-node@v4
with:
node-version: "23"
node-version: "23.0"
- uses: pnpm/action-setup@v4
- run: pnpm install

- run: |
nillion-devnet --seed test &
# nillion-devnet --seed test &
sleep 10
pnpm --filter client-vms test -- --coverage
pushd client-vms
pnpm vitest --coverage --coverage.reportOnFailure auth.test
ls -lah
ls -lah coverage
popd
killall -9 nillion-devnet
- uses: davelosert/vitest-coverage-report-action@v2
if: always()
with:
working-directory: ./client-vms
comment-on: "pr"

0 comments on commit a9ce9cf

Please sign in to comment.