Skip to content

chore(deps): update squidfunk/mkdocs-material docker tag to v9.5.44 #455

chore(deps): update squidfunk/mkdocs-material docker tag to v9.5.44

chore(deps): update squidfunk/mkdocs-material docker tag to v9.5.44 #455

Workflow file for this run

name: Dashboard CI
on:
push:
branches-ignore:
- "github-pages"
pull_request: {}
jobs:
changes:
runs-on: ubuntu-latest
outputs:
project: ${{ steps.filter.outputs.project }}
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
token: ${{ secrets.GITHUB_TOKEN }}
filters: |
project:
- 'dashboard/**/*'
- '.github/workflows/ci-dashboard.yml'
lint:
if: |
needs.changes.outputs.project == 'true'
runs-on: ubuntu-latest
needs:
- changes
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16.x
- run: cd dashboard && yarn install --frozen-lockfile
- run: cd dashboard && yarn lint
build:
if: |
needs.changes.outputs.project == 'true'
runs-on: ubuntu-latest
needs:
- changes
- lint
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16.x
- run: cd dashboard && yarn install --frozen-lockfile
- run: cd dashboard && yarn build