Triggered by push to refs/heads/dependabot/go_modules/gr25/go_modules-35e3bb0858 by @dependabot[bot] #631
Workflow file for this run
This file contains hidden or 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: dashboard | |
| run-name: Triggered by ${{ github.event_name }} to ${{ github.ref }} by @${{ github.actor }} | |
| on: [push] | |
| jobs: | |
| dashboard_lint_job: | |
| runs-on: ubuntu-latest | |
| name: lint | |
| defaults: | |
| run: | |
| working-directory: ./dashboard | |
| shell: bash | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.x' | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| - name: Run lint | |
| run: | | |
| npm run lint | |
| dashboard_prettier_job: | |
| runs-on: ubuntu-latest | |
| name: prettier | |
| defaults: | |
| run: | |
| working-directory: ./dashboard | |
| shell: bash | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.x' | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| - name: Run check | |
| run: | | |
| npm run check |