Skip to content

feat(chat): hide CHAT_HIDE_USER_JOINED_ROOM_ACTION and add comment fo… #6

feat(chat): hide CHAT_HIDE_USER_JOINED_ROOM_ACTION and add comment fo…

feat(chat): hide CHAT_HIDE_USER_JOINED_ROOM_ACTION and add comment fo… #6

Workflow file for this run

name: check css format
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: install node.js and npm
uses: actions/setup-node@v2
with:
node-version: '20'
- name: install prettier
run: npm i prettier -g
- name: check format using prettier
run: prettier --check '*.css'