Skip to content

hotfix: adjust broken links #516

hotfix: adjust broken links

hotfix: adjust broken links #516

Workflow file for this run

name: Pull Requests / Weekly QA
on:
pull_request:
branches:
- master
schedule:
- cron: '0 0 * * 6'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: lts/*
- uses: actions/[email protected]
id: cache
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
# if: steps.cache.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- run: npm run test-pr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}