Added deviceName and improved documentation #13308
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: 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 }} |