Skip to content

refactor: remove references to cloud agent #33

refactor: remove references to cloud agent

refactor: remove references to cloud agent #33

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, labeled]
push:
branches: [main]
workflow_dispatch:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout didcomm-mediator
uses: actions/checkout@v4
- name: Setup node v18
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: |
yarn install
- name: Check Format
run: |
yarn check-format
- name: Check Types
run: |
yarn check-types
- name: Build
run: |
yarn build