Skip to content

fix: browser redirect had wrong format when media index was present #4

fix: browser redirect had wrong format when media index was present

fix: browser redirect had wrong format when media index was present #4

Workflow file for this run

name: 'Lint'
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: 'Install Node'
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Get npm cache directory
id: npm-cache-dir
shell: bash
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
- uses: actions/cache@v4
id: npm-cache
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: 'Install Depencencies'
run: npm ci
- name: 'Run Tests'
run: npm run lint:check