MagiTrickle/.github/workflows/learn-github-actions.yml
Vladimir Avtsenov 6f6e3d2650
All checks were successful
learn-github-actions / check-bats-version (push) Successful in 1m9s
test action
2025-02-13 19:35:27 +03:00

14 lines
328 B
YAML

name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on: [push]
jobs:
check-bats-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install -g bats
- run: bats -v