Make resource citations support multiline strings #1168
Workflow file for this run
This file contains hidden or 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: Check Tekst-Web build and code style | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./Tekst-Web | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js 20.14.0 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24.13.0" | |
| cache: "npm" | |
| cache-dependency-path: "./Tekst-Web/package-lock.json" | |
| - run: npm install | |
| - run: npm run build --if-present |