docs: add typedoc documentation to client-react-hooks
#105
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: extractions/setup-just@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
- run: npm ci | |
- run: just check | |
test: | |
needs: check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: [ client-core, client-payments, client-vms ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22.5' | |
cache: 'npm' | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- uses: browser-actions/setup-chrome@v1 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y protobuf-compiler curl | |
npm ci | |
- uses: NillionNetwork/nillion-setup-action@main | |
with: | |
version: 'latest' | |
- run: | | |
just test-${{ matrix.package }}-ci | |
- uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: ${{ matrix.package }}-logs | |
path: packages/fixture/logs | |
retention-days: 4 |