feat: optional status tags in sidebar (closes #22) #70
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: 👮 CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: github/super-linter/slim@v4 | |
| env: | |
| LINTER_RULES_PATH: / | |
| VALIDATE_ALL_CODEBASE: false | |
| DEFAULT_BRANCH: 'master' | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # We use our own lint script for JavaScript to avoid config clashes | |
| VALIDATE_JAVASCRIPT_STANDARD: false | |
| VALIDATE_JAVASCRIPT_ES: false | |
| VALIDATE_JSX: false | |
| VALIDATE_CSS: false | |
| VALIDATE_HTML: false | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: npm | |
| - run: npm ci | |
| - name: Lint JS | |
| run: npx --no -- eslint src | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run build-storybook |