From bf8ae69274922c0c9ebb2a7314e13c3b223502d7 Mon Sep 17 00:00:00 2001 From: achuchuva <67221090+achuchuva@users.noreply.github.com> Date: Sat, 4 Sep 2021 18:04:23 +1000 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