npm-dressca-frontend: bump eslint-plugin-vue from 10.8.0 to 10.10.0 in /samples/Dressca/dressca-frontend #1065
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: dressca-root-frontend CI | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'samples/Dressca/dressca-frontend/*.*' | |
| - '.github/workflows/samples-dressca-root-frontend-ci.yml' | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| working-directory: samples/Dressca/dressca-frontend/ | |
| jobs: | |
| check: | |
| name: Dressca モノレポのルートプロジェクトのチェック | |
| runs-on: ubuntu-latest | |
| env: | |
| NO_COLOR: "1" # 文字化け防止のためカラーコードを出力しない | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Use Node.js LTS | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: lts/* | |
| # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
| cache: npm | |
| - name: node パッケージのインストール | |
| run: npm ci --ignore-scripts | |
| - id: run-format | |
| name: format の実行 | |
| run: npm run format:ci:root >> /var/tmp/format-result.txt 2>&1 | |
| - name: format の結果出力 | |
| if: ${{ success() || (failure() && steps.run-format.conclusion == 'failure') }} | |
| uses: ./.github/workflows/file-to-summary | |
| with: | |
| body: /var/tmp/format-result.txt | |
| header: 'format の結果 :pen:' |