22 lines
419 B
YAML
22 lines
419 B
YAML
on:
|
|
- workflow-dispatch
|
|
- push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: alpine:edge
|
|
|
|
steps:
|
|
- name: set up dependencied
|
|
run: apk update \
|
|
apk upgrade \
|
|
apk add nodejs git alpine-sdk
|
|
- uses: actions/checkout@v4
|
|
# - uses: https://code.forgejo.org/actions/checkout
|
|
|
|
- name: ls
|
|
run: ls . *
|
|
|
|
# vim: shiftwidth=2
|