Skip to content

Add Telegram channel info (#38) #11

Add Telegram channel info (#38)

Add Telegram channel info (#38) #11

Workflow file for this run

name: quality
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: [self-hosted, Linux, x64]
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: '14'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint