ZWaveJS: Configuration.resetAll is only supported on CC v4+ #32083
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/checkout@v4.2.2 | |
- name: Setup Node | |
uses: actions/setup-node@v4.1.0 | |
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/cache@v4.1.2 | |
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/checkout@v4.2.2 | |
- name: Setup Node | |
uses: actions/setup-node@v4.1.0 | |
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/checkout@v4.2.2 | |
- name: Setup Node | |
uses: actions/setup-node@v4.1.0 | |
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/upload-artifact@v4.4.3 | |
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/checkout@v4.2.2 | |
- name: Setup Node | |
uses: actions/setup-node@v4.1.0 | |
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/upload-artifact@v4.4.3 | |
with: | |
name: supervisor-bundle-stats | |
path: build/stats/*.json | |
if-no-files-found: error |