Skip to content

feat: change the button and add new option of channels #142

feat: change the button and add new option of channels

feat: change the button and add new option of channels #142

Workflow file for this run

name: Lint and format
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "20.10.0"
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint
- name: Run Prettier
run: npm run format-check