Skip to content

chore(workflow): add nodejs 22 #23

chore(workflow): add nodejs 22

chore(workflow): add nodejs 22 #23

Workflow file for this run

name: Hybrid-Torrent-Tracker CI
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20.x
- 22.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run test