Skip to content

Add e2e tests and bump versions #31

Add e2e tests and bump versions

Add e2e tests and bump versions #31

Workflow file for this run

name: 'client-pr'
on:
pull_request:
branches: [main]
paths:
- 'holo-key-manager-js-client/package.json'
- '.github/workflows/client-PR.yaml'
jobs:
build:
runs-on: ubuntu-latest
environment:
name: Client
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: lts/*
registry-url: 'https://registry.npmjs.org'
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
working-directory: holo-key-manager-js-client
- name: Run unit tests
run: pnpm test
working-directory: holo-key-manager-js-client