diff --git a/.github/workflows/css-codestyle.yaml b/.github/workflows/css-codestyle.yaml index e950f84..0cdddaa 100644 --- a/.github/workflows/css-codestyle.yaml +++ b/.github/workflows/css-codestyle.yaml @@ -16,6 +16,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - uses: actions-hub/stylelint@master - env: - PATTERN: "src/**/*.scss" \ No newline at end of file + - uses: actions/setup-node@v4 + + - run: npm install stylelint stylelint-config-standard stylelint-config-sass-guidelines + + - name: Run StyleLint + run: npx stylelint "src/**/*.scss" \ No newline at end of file