fix(report-portal): Fixed search for projects page #14
Workflow file for this run
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: Pull request website | |
# Do not abstract the build step into a separate workflow file, as it will run into pathname issues | |
on: | |
pull_request: | |
paths: | |
- '**/README.md' | |
jobs: | |
build-website: | |
name: Build website | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 | |
with: | |
repository: janus-idp/janus-idp.github.io | |
persist-credentials: false | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v3 | |
name: Install pnpm | |
id: pnpm-install | |
- name: Setup Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: | | |
pnpm install | |
if [[ $(git diff --name-only . || true) ]]; then | |
echo "After 'pnpm install', workspace is dirty! The following files have changed:" | |
echo | |
git diff --name-only . || true | |
exit 42 | |
fi | |
- name: Run Build | |
run: pnpm run build --filter=website |