Skip to content

Feat: Convert URLs in torrent comments into clickable links #99

Feat: Convert URLs in torrent comments into clickable links

Feat: Convert URLs in torrent comments into clickable links #99

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
jobs:
php:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: posix, dom, xml, mbstring, iconv, json, curl
- name: PHP test suite
run: bash php-test.sh
working-directory: tests
jest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: tests/package-lock.json
- run: npm ci
working-directory: tests
- run: npm test
working-directory: tests