mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-03-14 23:43:00 +00:00
see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
18 lines
327 B
YAML
18 lines
327 B
YAML
name: linter
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
|
|
jobs:
|
|
translations:
|
|
name: Check Translations
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Lint translation files
|
|
run: python3 contrib/devtools/check-translations.py
|