Refactor client-react-hooks and the examples-nextjs to use the grpc client #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "23" | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- run: pnpm exec biome format | |
- run: pnpm exec biome lint | |
- run: pnpm exec tsc -p client-vms/tsconfig.json | |
test-client-vms: | |
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.42" | |
- 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.0" | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm install | |
- run: | | |
nillion-devnet --seed test & | |
sleep 10 | |
cd client-vms | |
pnpm vitest --coverage | |
killall -9 nillion-devnet | |
- uses: davelosert/vitest-coverage-report-action@v2 | |
if: always() | |
with: | |
working-directory: ./client-vms | |
comment-on: "pr" |