Add advanced/development options to device page #76
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: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out files from GitHub | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Install dependencies | |
run: script/bootstrap | |
- name: Install yarn | |
run: yarn install | |
- name: Run eslint | |
run: yarn run lint:eslint | |
- name: Run prettier | |
run: yarn run lint:prettier | |
- name: Check for duplicate dependencies | |
run: yarn dedupe --check | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out files from GitHub | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Node ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: yarn | |
- name: Install dependencies | |
run: script/bootstrap | |
- name: Install yarn | |
run: yarn install | |
- name: Build | |
run: yarn build |