Skip to content

feat: add support for didcomm presentations #218

feat: add support for didcomm presentations

feat: add support for didcomm presentations #218

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
# Cancel multiple runs for the same PR or branch
concurrency:
group: aries-framework-${{ github.ref }}-${{ github.repository }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-22.04
name: Validate
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: Install dependencies
run: yarn install
- name: Compile
run: yarn build
- name: Linting
run: yarn lint
- name: Prettier
run: yarn check-format
- name: Check Types
run: yarn check-types
- name: Unit Tests
run: yarn test:unit