ayaports/.forgejo/workflows/action.yaml

21 lines
475 B
YAML
Raw Normal View History

2024-08-11 20:37:29 +00:00
on:
pull_request:
types: [ assigned, opened, synchronize, reopened ]
2024-08-11 20:38:29 +00:00
2024-08-11 20:00:48 +00:00
jobs:
lint:
run-name: lint
2024-08-11 20:26:58 +00:00
runs-on: x86_64
2024-08-11 20:07:24 +00:00
container:
image: alpine:edge
2024-08-11 20:00:48 +00:00
steps:
2024-08-11 20:47:13 +00:00
- run: apk add nodejs git
2024-08-11 20:43:34 +00:00
- uses: actions/checkout@v4
2024-08-11 20:00:48 +00:00
- run: |
2024-08-11 20:40:09 +00:00
apk add shellcheck atools sudo abuild
2024-08-11 20:41:05 +00:00
echo $GITHUB_WORKSPACE
ls -all $GITHUB_WORKSPACE
2024-08-11 20:00:48 +00:00
export PATH="$PATH:$GITHUB_WORKSPACE/.gitlab/bin"
2024-08-11 20:43:34 +00:00
ls $GITHUB
2024-08-11 20:00:48 +00:00
lint