From 3b699007b07330c9813f1d99dac0719498e377e8 Mon Sep 17 00:00:00 2001 From: Kevin M Johnson <101289324+Kevin-M-Johnson@users.noreply.github.com> Date: Fri, 4 Oct 2024 14:33:30 -0400 Subject: [PATCH] Create learngithubactions.yml --- .github/workflows/learngithubactions.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/learngithubactions.yml diff --git a/.github/workflows/learngithubactions.yml b/.github/workflows/learngithubactions.yml new file mode 100644 index 0000000..6e653cf --- /dev/null +++ b/.github/workflows/learngithubactions.yml @@ -0,0 +1,13 @@ +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