feat(apps/hermes): new client package for hermes #2
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 Hermes Client API Types | |
on: | |
pull_request: | |
paths: [apps/hermes/client/**] | |
push: | |
branches: [main] | |
paths: [apps/hermes/client/**] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "npm" | |
- name: Install deps | |
run: npm ci | |
- name: Generate API Types | |
run: npx lerna run generate-hermes-api-types | |
- name: Check API Types | |
run: npx lerna run check-hermes-api-types |