feat: add support for didcomm presentations #218
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: 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 |