[BUGFIX] Parse page links with anchor correctly #508
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
# build css / js | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: "build (yarn)" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@main | |
# https://github.com/actions/setup-node | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
#cache: 'npm' | |
- name: "yarn install" | |
run: yarn install | |
- name: "yarn install" | |
run: yarn build | |
- name: "check git" | |
run: git update-index --refresh || git diff-index --quiet HEAD -- || echo "Uncommitted changes after build"; |