fixalpinesh/example.yml
Lain Iwakura 65365c89f1
fix shell
2025-06-20 22:30:28 +03:00

24 lines
482 B
YAML

name: Test Alpine Fix
on: [push, pull_request]
jobs:
test-alpine:
runs-on: alpine-latest
steps:
- uses: actions/checkout@v3
- name: Fix Alpine Shell
uses: lain/fixsh-alpine@main
with:
install-bash: 'true'
install-nodejs: 'true'
extra-packages: 'git curl'
- name: Test bash
shell: bash
run: echo "Bash works!"
- name: Test nodejs
shell: sh
run: node --version