Skip to content

fix(eslint): escape unescaped characters in JSX #42

fix(eslint): escape unescaped characters in JSX

fix(eslint): escape unescaped characters in JSX #42

Workflow file for this run

# 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