-
-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Upgrade actions/checkout to v4 (#293)
- Loading branch information
1 parent
dc8cb0c
commit 7efbea1
Showing
1 changed file
with
10 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
name: Lint Awesome List | ||
on: [pull_request, push] | ||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
awesome-lint: | ||
name: "lint: awesome-lint" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "checkout repo" | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: "lint: awesome-lint" | ||
run: npx awesome-lint 'README.md' | ||
awesome-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- run: npx awesome-lint 'README.md' |