Fix scanning of small QR codes with JS #31797
Workflow file for this run
This file contains 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 | |
on: | |
push: | |
branches: | |
- dev | |
- master | |
pull_request: | |
branches: | |
- dev | |
- master | |
env: | |
NODE_OPTIONS: --max_old_space_size=6144 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint and check format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out files from GitHub | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Check for duplicate dependencies | |
run: yarn dedupe --check | |
- name: Build resources | |
run: ./node_modules/.bin/gulp gen-icons-json build-translations build-locale-data gather-gallery-pages | |
- name: Setup lint cache | |
uses: actions/[email protected] | |
with: | |
path: | | |
node_modules/.cache/prettier | |
node_modules/.cache/eslint | |
node_modules/.cache/typescript | |
key: lint-${{ github.sha }} | |
restore-keys: lint- | |
- name: Run eslint | |
run: yarn run lint:eslint --quiet | |
- name: Run tsc | |
run: yarn run lint:types | |
- name: Run lit-analyzer | |
run: yarn run lint:lit --quiet | |
- name: Run prettier | |
run: yarn run lint:prettier | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out files from GitHub | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build resources | |
run: ./node_modules/.bin/gulp gen-icons-json build-translations build-locale-data | |
- name: Run Tests | |
run: yarn run test | |
build: | |
name: Build frontend | |
needs: [lint, test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out files from GitHub | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build Application | |
run: ./node_modules/.bin/gulp build-app | |
env: | |
IS_TEST: "true" | |
- name: Upload bundle stats | |
uses: actions/[email protected] | |
with: | |
name: frontend-bundle-stats | |
path: build/stats/*.json | |
if-no-files-found: error | |
supervisor: | |
name: Build supervisor | |
needs: [lint, test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out files from GitHub | |
uses: actions/[email protected] | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build Application | |
run: ./node_modules/.bin/gulp build-hassio | |
env: | |
IS_TEST: "true" | |
- name: Upload bundle stats | |
uses: actions/[email protected] | |
with: | |
name: supervisor-bundle-stats | |
path: build/stats/*.json | |
if-no-files-found: error |