ci: fix formatting and ignore package-lock.json (#9429)

Signed-off-by: Seth Falco <seth@falco.fun>

Signed-off-by: Seth Falco <seth@falco.fun>
pull/1/head
Seth Falco 2022-10-30 11:50:00 +01:00 committed by GitHub
parent 33118a53ac
commit b0e9368d0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 5 deletions

View File

@ -8,18 +8,20 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v26.1
with:
# Ignore all other languages except English
files_ignore: pages.*/*/*
files_ignore: |
pages.*/*/*
package-lock.json
- uses: codespell-project/actions-codespell@master
with:
ignore_words_file: .github/codespell-ignore
# Exit with 0 regardless of typos.
only_warn: 1
only_warn: 1
# Only check files in the PR
path: ${{ steps.changed-files.outputs.all_changed_files }}
path: ${{ steps.changed-files.outputs.all_changed_files }}