refactor(pageLayout): sw-2707 remove deprecated react (#1448) #1972
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation lint | |
on: | |
push: | |
pull_request: | |
jobs: | |
Documentation: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Node.js modules cache | |
uses: actions/cache@v4 | |
id: modules-cache | |
with: | |
path: ${{ github.workspace }}/node_modules | |
key: ${{ runner.os }}-${{ matrix.node-version }}-modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.node-version }}-modules | |
- name: Install Node.js packages | |
if: ${{ steps.modules-cache.outputs.cache-hit != 'true' }} | |
run: npm install | |
- name: Build | |
run: npm run build:docs | |
- name: Git modified files | |
if: ${{ success() }} | |
run: | | |
echo 'GIT_MODIFIED<<EOF' >> $GITHUB_ENV | |
git ls-files -m >> $GITHUB_ENV | |
echo 'EOF' >> $GITHUB_ENV | |
- name: Lint | |
if: ${{ success() }} | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const actionCommit = require(`${process.env.GITHUB_WORKSPACE}/scripts/actions.documentation.js`) | |
const { resultsArray, resultsString } = actionCommit(process.env.GIT_MODIFIED) | |
if (resultsArray.length) { | |
core.setFailed(resultsString) | |
} |