Skip to content

TorrentGeneralInfo: drop leading and trailing whitespaces from commen… #1477

TorrentGeneralInfo: drop leading and trailing whitespaces from commen…

TorrentGeneralInfo: drop leading and trailing whitespaces from commen… #1477

Workflow file for this run

name: Check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
node: [20]
check: [check-source-formatting, check-types, lint]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run ${{ matrix.check }}