feat!: grpc migration #114
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: Check and test | |
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: '22' | |
cache: 'npm' | |
- run: npm ci | |
- run: | | |
node --version | |
npx eslint --version | |
npx tsc --version | |
pwd | |
ls | |
- run: npx prettier -c "**/*.(js|jsx|mjs|ts|tsx)" | |
- run: npx tsc -p client-vms/tsconfig.json | |
- run: npx eslint -c eslint.config.mjs | |
test-client-vms: | |
if: false | |
needs: check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
- uses: NillionNetwork/nillion-setup-action@main | |
with: | |
version: 'latest' | |
- run: | | |
nillion-devnet --seed test-fixture & | |
sleep 10 | |
just test-client-vms | |
killall -9 nillion-devnet |