Skip to content

Rework how chat is set #1

Rework how chat is set

Rework how chat is set #1

Workflow file for this run

name: Pull Request Test
on:
pull_request:
branches: [main]
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install PNPM
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Run lints
run: pnpm lint