Skip to content

App Updates & CI improvements #52

App Updates & CI improvements

App Updates & CI improvements #52

Workflow file for this run

name: "Typos"
on:
push:
branches:
- main
pull_request:
# The branches below must be a subset of the branches above
branches:
- main
schedule:
- cron: "45 9 * * 1" # Läuft jeden Montag um 09:45 UTC
permissions:
contents: read # Erforderlich, um den Code auszuchecken
jobs:
run:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Cache Typos
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: ~/.cache/typos
key: typos-${{ runner.os }}-${{ hashFiles('.typos.toml') }}
restore-keys: |
typos-${{ runner.os }}-
- name: Run Typos with custom config
uses: crate-ci/typos@40156d6074bf731adb169cfb8234954971dbc487 # v1.37.1
with:
config: ./.typos.toml