Skip to content

Commit

Permalink
fix: apply linter suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
frytg committed Aug 9, 2022
1 parent b4bc34d commit 061c361
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
open-pull-requests-limit: 10
schedule:
interval: "weekly"
day: "sunday"
- package-ecosystem: "github-actions"
directory: "/"
open-pull-requests-limit: 10
schedule:
interval: "weekly"
day: "sunday"
- package-ecosystem: 'npm'
directory: '/'
open-pull-requests-limit: 10
schedule:
interval: 'weekly'
day: 'sunday'
- package-ecosystem: 'github-actions'
directory: '/'
open-pull-requests-limit: 10
schedule:
interval: 'weekly'
day: 'sunday'
8 changes: 8 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ on:
required: false
type: boolean
default: false
skip-checkout:
description: 'Whether to skip repository checkout in this workflow'
required: false
type: boolean
default: false

env:
CSS_FILE_NAME: /.stylelintrc.json
Expand Down Expand Up @@ -114,7 +119,10 @@ jobs:
statuses: write
steps:
- name: 👀 Checkout repo
if: inputs.skip-checkout != true
uses: actions/checkout@v3
with:
persist-credentials: false

- name: ⛺️ Install Node.js
uses: actions/setup-node@v3
Expand Down

0 comments on commit 061c361

Please sign in to comment.