Skip to content

Commit 2d92d9e

Browse files
committed
Merge branch 'dev' into prod
2 parents 376744d + bccaccb commit 2d92d9e

60 files changed

Lines changed: 1544 additions & 756 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
matrix:
1010
runs-on: [ubuntu-latest, windows-latest, macos-latest]
1111
fail-fast: false
12-
uses: ./.github/workflows/be_base.yml
12+
uses: ./.github/workflows/be_base.yaml
1313
with:
1414
runs-on: ${{ matrix.runs-on }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
matrix:
1010
runs-on: [ubuntu-latest, windows-latest, macos-latest]
1111
fail-fast: false
12-
uses: ./.github/workflows/c#_base.yml
12+
uses: ./.github/workflows/c#_base.yaml
1313
with:
1414
runs-on: ${{ matrix.runs-on }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
matrix:
1010
runs-on: [ubuntu-latest, windows-latest, macos-latest]
1111
fail-fast: false
12-
uses: ./.github/workflows/fe_base.yml
12+
uses: ./.github/workflows/fe_base.yaml
1313
with:
1414
runs-on: ${{ matrix.runs-on }}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,30 @@ jobs:
2323
- uses: ./.github/actions/fe
2424
- run: yarn run eslint .
2525

26+
stylelint:
27+
runs-on: ${{ inputs.runs-on }}
28+
steps:
29+
- uses: actions/checkout@v4
30+
- uses: ./.github/actions/fe
31+
32+
- id: cache-restore
33+
uses: actions/cache/restore@v4
34+
with:
35+
path: ${{ github.workspace }}/fe/.stylelintcache
36+
key: ${{ runner.os }}-fe-stylelintcache
37+
restore-keys: ${{ runner.os }}-fe-stylelintcache-
38+
39+
- uses: xt0rted/stylelint-problem-matcher@v1
40+
- run: yarn run stylelint --cache --custom-formatter stylelint-actions-formatters '**/*.vue'
41+
- if: always()
42+
run: yarn run stylelint --cache --custom-formatter stylelint-actions-formatters '**/*.css'
43+
44+
- uses: actions/cache/save@v4
45+
if: always() && steps.cache-restore.outputs.cache-hit != 'true'
46+
with:
47+
path: ${{ github.workspace }}/fe/.stylelintcache
48+
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
49+
2650
type-coverage:
2751
runs-on: ${{ inputs.runs-on }}
2852
steps:

0 commit comments

Comments
 (0)