Skip to content
This repository was archived by the owner on Jun 10, 2026. It is now read-only.

chore(deps): Bump github.com/adrg/xdg from 0.4.0 to 0.5.3 #31

chore(deps): Bump github.com/adrg/xdg from 0.4.0 to 0.5.3

chore(deps): Bump github.com/adrg/xdg from 0.4.0 to 0.5.3 #31

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install dependencies
run: |
if [ -f package.json ]; then npm ci
elif [ -f requirements.txt ]; then pip install -r requirements.txt
fi
- name: Check
run: |
if [ -f package.json ]; then npm run lint --if-present && npm test --if-present
elif [ -f requirements.txt ]; then python -m pytest --tb=short 2>/dev/null || true
fi