Skip to content

Create a Size Selector Component #272

Create a Size Selector Component

Create a Size Selector Component #272

Workflow file for this run

name: Code Style
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
code-style:
runs-on: ubuntu-latest
name: code-style
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Setup deps
uses: ./.github/actions/install-deps
- name: Get all changed files
id: all-changed-files
uses: tj-actions/changed-files@v41
with:
files: |
!pnpm-lock.yaml
- name: Run prettier in all files
if: steps.all-changed-files.outputs.any_changed == 'true'
env:
files: ${{ steps.all-changed-files.outputs.all_changed_files }}
run: pnpm exec prettier $files --check --ignore-unknown
- name: Get specific changed files
id: changed-files
uses: tj-actions/changed-files@v41
with:
files_yaml: |
code:
- '**.js'
- '**.ts'
- '**.tsx'
- '**.jsx'
- '**.mjs'
- '**.cjs'
style:
- '**.scss'
- name: Run stylelint in scss files
if: steps.changed-files.outputs.style_any_changed == 'true'
env:
files: ${{ steps.changed-files.outputs.style_all_changed_files }}
run: pnpm exec stylelint $files --allow-empty-input
- name: Run eslint in code files
if: steps.changed-files.outputs.code_any_changed == 'true'
env:
files: ${{ steps.changed-files.outputs.code_all_changed_files }}
run: pnpm exec eslint $files --report-unused-disable-directives --max-warnings 0 --output-file eslint_report.json --format json
continue-on-error: true