Skip to content

Fix ability to add custom frame colors #6943

Fix ability to add custom frame colors

Fix ability to add custom frame colors #6943

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
lint:
name: Lint on node 20 and ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Lint codebase
run: yarn lint
format:
name: Format on node 20 and ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Check codebase format
run: yarn prettier --check .
spellcheck:
name: Spell check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check spelling
uses: crate-ci/typos@master