19 lines
426 B
YAML
19 lines
426 B
YAML
on:
|
|
pull_request:
|
|
types: [ assigned, opened, synchronize, reopened ]
|
|
|
|
jobs:
|
|
lint:
|
|
run-name: lint
|
|
runs-on: x86_64
|
|
container:
|
|
image: alpine:edge
|
|
steps:
|
|
- run: apk add nodejs git
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 500
|
|
- run: |
|
|
apk add shellcheck atools sudo abuild
|
|
export PATH="$PATH:$GITHUB_WORKSPACE/.gitlab/bin"
|
|
lint
|