chore(deps): update squidfunk/mkdocs-material docker tag to v9.5.44 #455
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: 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 |