Skip to content

Migrate to the Userscripts API #4

Migrate to the Userscripts API

Migrate to the Userscripts API #4

Workflow file for this run

name: Tests
on:
push:
branches:
- '**'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Run coverage
run: npm run test:coverage