fix(eslint): escape unescaped characters in JSX #42
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
| # Sample workflow for building and deploying a Next.js site to GitHub Pages | |
| name: Deploy Next.js site to Pages | |
| on: | |
| push: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Change to the project directory | |
| run: cd kommande-access-gui | |
| - name: Print Working Directory | |
| run: pwd | |
| - name: Print Files | |
| run: ls -lah | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22.9.0" | |
| cache: yarn | |
| cache-dependency-path: kommande-access-gui/yarn.lock | |
| - name: Print Working Directory | |
| run: pwd | |
| - name: Print Files | |
| run: ls -lah | |
| - name: Install dependencies | |
| run: yarn install | |
| working-directory: kommande-access-gui | |
| - name: Build with Next.js | |
| run: yarn build | |
| working-directory: kommande-access-gui |