Skip to content

test

test #4

Workflow file for this run

# This workflow loosely replicates the logic in .woodpecker.yml
name: Run Lemmy tests
on:
push:
branches:
- lw-0.*
- lw-test
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
show-progress: "false"
- name: Debug
uses: docker://alpine:3
with:
args: |
pwd
ls -la
find . -type f
apk add git
git status
- name: Prettier
uses: docker://tmknom/prettier:3.0.0
with:
args: prettier --log-level debug -c . '!**/volumes' '!**/dist' '!target' '!**/translations'