From 6541f49e34a2ff137cf25d8b1328e39531ff475b Mon Sep 17 00:00:00 2001 From: TechnoVandal <163842334+TechnoVandal@users.noreply.github.com> Date: Thu, 21 Mar 2024 08:19:20 +0200 Subject: [PATCH] Create learn-github-actions.yml --- learn-github-actions.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 learn-github-actions.yml diff --git a/learn-github-actions.yml b/learn-github-actions.yml new file mode 100644 index 0000000..b59a7a1 --- /dev/null +++ b/learn-github-actions.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: '14' + - run: npm install -g bats + - run: bats -v