2021-06-10 18:12:05 -05:00
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- shell: bash
|
|
|
|
run: |
|
2021-11-03 13:47:47 -05:00
|
|
|
if [[ -n "$BASH" ]]; then
|
|
|
|
echo "I'm $BASH!"
|
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
check-container:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: node:12-buster-slim
|
|
|
|
steps:
|
|
|
|
- shell: bash
|
|
|
|
run: |
|
|
|
|
if [[ -n "$BASH" ]]; then
|
|
|
|
echo "I'm $BASH!"
|
|
|
|
else
|
|
|
|
exit 1
|
2021-06-10 18:12:05 -05:00
|
|
|
fi
|