Fix indentation for raw string newlines (#625) #18
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: Deploy static content to Pages | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: 'pages' | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| cache-dependency-path: docs/playground/package-lock.json | |
| - name: install dependencies | |
| run: make -C ./docs/playground deps | |
| - name: build | |
| run: make -C ./docs/playground build | |
| - name: setup Pages | |
| uses: actions/configure-pages@v4 | |
| - name: upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: './docs/playground/dist' | |
| - name: deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |