Skip to content

Show a Not Found error when the DIDs or Rules search doesn't yield any results #32

Show a Not Found error when the DIDs or Rules search doesn't yield any results

Show a Not Found error when the DIDs or Rules search doesn't yield any results #32

Workflow file for this run

name: Prettier Code Check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
prettier-check:
name: Prettier Code Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: npm run prettier:check || echo "::warning::Prettier found formatting issues. Please run 'npm run prettier:write' to fix them."