Fixes Bug - ZHA E2002 Long Press Down not releasing #698 (#699) #496
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: CI - Push | |
'on': | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Run Linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.15.0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- id: yamllint | |
name: Yamllint | |
uses: reviewdog/action-yamllint@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-check | |
yamllint_flags: '.' | |
fail_level: error | |
filter_mode: nofilter | |
- if: always() | |
id: eslint | |
name: ESLint | |
uses: reviewdog/[email protected] | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-check | |
eslint_flags: --ext js,jsx . | |
fail_level: error | |
filter_mode: nofilter | |
workdir: website | |
prettier: | |
name: Prettier - Enforce code style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.15.0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- id: prettier | |
name: Prettier | |
uses: creyD/[email protected] | |
with: | |
dry: true | |
prettier_options: --write . | |
env: | |
GITHUB_TOKEN: ${{ secrets.github_token }} | |
gh-pages: | |
name: Deploy to GH Pages | |
needs: | |
- lint | |
- prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.15.0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Website - Build | |
run: cd website && pnpm build | |
- name: Create .nojekyll file | |
run: touch website/build/.nojekyll | |
- name: Deploy to GitHub Pages | |
uses: s0/[email protected] | |
env: | |
REPO: self | |
BRANCH: gh-pages | |
FOLDER: website/build | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MESSAGE: '🤖 Deploy static site for change: {msg}' | |
SKIP_EMPTY_COMMITS: true |