19 lines
No EOL
350 B
YAML
19 lines
No EOL
350 B
YAML
on:
|
|
push:
|
|
workflow_dispatch:
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
container:
|
|
image: bitnami/minideb:bullseye-arm64
|
|
steps:
|
|
- name: Dependencies
|
|
run: |
|
|
apt update -y
|
|
apt install nodejs -y
|
|
node -v
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 |