feat: Add CLI and rewrite all scripts to NodeJS in order to improve W… #607
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: "internal/status-dashboard" | |
on: | |
push: | |
branches: [ '**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [ 16, 18 ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/workflows/actions/setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
- shell: bash | |
run: pnpm install | |
--include-workspace-root | |
--frozen-lockfile | |
--filter=status-dashboard... | |
- name: Lint | |
shell: bash | |
run: pnpm nx run status-dashboard:lint | |
- name: Build | |
shell: bash | |
run: pnpm nx run status-dashboard:build |