Skip to content

Merge pull request #898 from wet-boew/dependabot/npm_and_yarn/eslint-… #420

Merge pull request #898 from wet-boew/dependabot/npm_and_yarn/eslint-…

Merge pull request #898 from wet-boew/dependabot/npm_and_yarn/eslint-… #420

Workflow file for this run

name: TESTLINKS
on:
push:
branches:
- "master"
- "feat-*"
- "maintenance-*"
- "release-*"
schedule:
- cron: "30 11 * * 1"
jobs:
build:
# Avoid running for pushes comming from dependabot merges (as they wouldn't alter links)
# Determining this from commit message may not be ideal, but seems like the only way from the info available on push
if: github.event_name == 'schedule' || !(startsWith(github.event.head_commit.message, 'Merge pull request') && contains(github.event.head_commit.message, 'wet-boew/dependabot/'))
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Test
run: npm run test-links
env:
DISABLE_PROXY: true