Skip to content

initial setup of activity log listener and store. #191

initial setup of activity log listener and store.

initial setup of activity log listener and store. #191

Workflow file for this run

name: Prettier checks
on:
push:
branches: ['main', 'feat/svelte-app']
pull_request:
branches: ['main', 'feat/svelte-app']
jobs:
prettier:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Check formatting with Prettier
run: npm run prettier:check:ci