From b9f5aaf9a064b839968c56dec818474f11cb77d5 Mon Sep 17 00:00:00 2001 From: Joe-Code <40872856+Joe-Code@users.noreply.github.com> Date: Wed, 22 Sep 2021 14:17:16 -0400 Subject: [PATCH] Create learn-github-actions.yml --- .github/workflows/learn-github-actions.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/learn-github-actions.yml diff --git a/.github/workflows/learn-github-actions.yml b/.github/workflows/learn-github-actions.yml new file mode 100644 index 0000000..6d41fdc --- /dev/null +++ b/.github/workflows/learn-github-actions.yml @@ -0,0 +1,12 @@ +name: learn-github-actions +on: [push] +jobs: + check-bats-version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v