Skip to content

FEATURE: Support notifying for self-hosted instances #170

FEATURE: Support notifying for self-hosted instances

FEATURE: Support notifying for self-hosted instances #170

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
concurrency:
group: linting-${{ format('{0}-{1}', github.head_ref || github.run_number, github.job) }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: yarn
- name: Yarn install
run: yarn install
- name: ESLint
if: ${{ !cancelled() }}
run: yarn eslint
- name: Prettier
if: ${{ !cancelled() }}
run: yarn prettier