Skip to content

Added deviceName and improved documentation #13308

Added deviceName and improved documentation

Added deviceName and improved documentation #13308

Workflow file for this run

name: Automatic Quality Checks
on: [push]
jobs:
validate:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.18.1]
timeout-minutes: 40
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm run setup
- name: Lint, stylelint and typecheck
run: npx nx run-many --targets=lint,stylelint,typecheck
env:
CI: true
NX_NO_CLOUD: true
- name: Test
run: npx nx run-many --target=test
env:
CI: true
NODE_OPTIONS: "--max_old_space_size=8192"
NX_NO_CLOUD: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}