From 0152ccf04f2c029574e9e4f67fa7e2f45f755a16 Mon Sep 17 00:00:00 2001 From: l4kr Date: Wed, 13 Sep 2023 16:06:48 +0200 Subject: [PATCH] acid testing --- .github/workflows/futon-deploy.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/futon-deploy.yaml b/.github/workflows/futon-deploy.yaml index 49ca85c..c571030 100644 --- a/.github/workflows/futon-deploy.yaml +++ b/.github/workflows/futon-deploy.yaml @@ -1,4 +1,4 @@ -name: Lint +name: Lint Workflow on: pull_request: @@ -17,8 +17,14 @@ jobs: node-version: '16.x' - name: Install dependencies run: npm install - # - name: Lint CSS files - # run: npx stylelint '**/*.css' --config .stylelintrc.json + - name: Initialize ESLint configuration file + run: npx eslint --init + - name: Initialize Stylelint configuration file + run: npx stylelint --init + - name: Initialize HTMLHint configuration file + run: npx htmlhint --init + - name: Lint CSS files + run: npx stylelint '**/*.css' --config .stylelintrc.json - name: Lint JavaScript files run: npx eslint '**/*.js' - name: Lint HTML files