Skip to content

fix(composer): drop 'replace' property #12594

fix(composer): drop 'replace' property

fix(composer): drop 'replace' property #12594

Workflow file for this run

name: Docs
on:
push:
paths:
- 'js/**'
- 'scss/**'
- 'site/**'
branches:
- v4-dev
- "!dependabot/**"
pull_request:
types:
- opened
- synchronize
- labeled
- unlabeled
branches:
- v4-dev
- "!dependabot/**"
workflow_dispatch:
env:
FORCE_COLOR: 2
NODE: 16
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Bail early
if: github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'skip:ci')
run: exit 0
- name: Clone repository
uses: actions/checkout@v3
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip:ci'))
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "${{ env.NODE }}"
cache: npm
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip:ci'))
- run: java -version
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip:ci'))
- name: Install npm dependencies
run: npm ci
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip:ci'))
- name: Test docs
run: npm run docs
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip:ci'))
- name: Validate HTML
run: npm run docs-vnu
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip:ci'))
- name: Run linkinator
uses: JustinBeckwith/linkinator-action@v1
with:
paths: _site
recurse: true
verbosity: error
skip: "^(?!http://localhost)"
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip:ci'))