Skip to content

producing a did usable by the didcomm demo #3

producing a did usable by the didcomm demo

producing a did usable by the didcomm demo #3

Workflow file for this run

name: Prettier Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check formatting with Prettier
run: npx prettier --check "**/*.{ts,js,vue,json,md,yml,yaml}"