diff --git a/.github/workflows/mls-client.yml b/.github/workflows/mls-client.yml index 9152ac650..5ef4fb446 100644 --- a/.github/workflows/mls-client.yml +++ b/.github/workflows/mls-client.yml @@ -83,7 +83,21 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - run: echo "No tests for MLS Client yet." + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + cache: 'yarn' + env: + SKIP_YARN_COREPACK_CHECK: '1' + - name: Enable corepack + run: corepack enable + - name: Install dependencies + run: yarn + - run: ./dev/up + - run: | + cd packages/mls-client + yarn test build: name: Build