Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
inker committed Dec 21, 2023
1 parent d505129 commit 4c3f977
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm ci
- run: npm ci --no-audit --no-progress
- run: npm run lint:js

stylelint:
Expand All @@ -28,7 +28,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm ci
- run: npm ci --no-audit --no-progress
- run: npm run lint:css

type-checking:
Expand All @@ -39,7 +39,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm ci
- run: npm ci --no-audit --no-progress
- run: npm run check-types

test:
Expand All @@ -50,5 +50,5 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm ci
- run: npm ci --no-audit --no-progress
- run: npm test
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm ci
run: npm ci --no-audit --no-progress
- name: Build
run: npm run build -- --env out=$GH_PAGES_DIR
- name: Deploy
Expand Down

0 comments on commit 4c3f977

Please sign in to comment.