Skip to content

Bug 485. URL encode DID names. #35

Bug 485. URL encode DID names.

Bug 485. URL encode DID names. #35

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."