Skip to content

removed SERVER_API_URL constants from account calls as a test #19

removed SERVER_API_URL constants from account calls as a test

removed SERVER_API_URL constants from account calls as a test #19

Workflow file for this run

name: Prettier & Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_call:
workflow_dispatch:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
cache-dependency-path: "ui/package-lock.json"
- name: Install dependencies
working-directory: ui
run: npm ci
- name: Run formatter
working-directory: ui
run: npm run format:cli