Skip to content

perf: Reword torrent priority to queue position #2026

perf: Reword torrent priority to queue position

perf: Reword torrent priority to queue position #2026

Workflow file for this run

name: Test Core Components
on:
pull_request:
types:
- opened
- ready_for_review
- reopened
- synchronize
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Build Node.js cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Test Build
run: npm run build