Skip to content

fix: only allow one instance of sendToChat() #2610

fix: only allow one instance of sendToChat()

fix: only allow one instance of sendToChat() #2610

Workflow file for this run

name: Basic Code Checks
on:
push:
branches:
- master
pull_request:
paths-ignore:
- 'docs/**' # only trigger build if a file outside of /docs was changed
- 'README_ASSETS/**'
- '.prettierrc.yml'
- '.vscode/**'
jobs:
test:
name: Code Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: npm ci
run: |
npm ci
- name: preperation (generate code)
run: |
npm run build:shared:version
- name: Check Typescript Types
run: |
npm run check-types
- name: Run ESLint
run: |
npm run lint
- name: Check Formatting
run: |
npm run check-formatting
- name: Check for misplaced console.log statements
run: |
npm run test-log-conventions
- name: Misc tests
run: |
npm run test-misc