From 05df98ec4bd95b05dc6b89f22c9f72298815dfa4 Mon Sep 17 00:00:00 2001 From: Manav Bhatia Date: Fri, 27 Nov 2020 10:25:21 -0600 Subject: [PATCH 1/2] initial commit of github action file --- .github/workflows/learn-github-actions.yml | 11 +++++++++++ 1 file changed, 11 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..1652030 --- /dev/null +++ b/.github/workflows/learn-github-actions.yml @@ -0,0 +1,11 @@ +name: learn-github-actions +on: [push] +jobs: + check-bats-version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + - run: npm install -g bats + - run: bats -v + From 741e043aabbfb25fb57ffa13ef2b4654385a99bf Mon Sep 17 00:00:00 2001 From: Manav Bhatia Date: Fri, 27 Nov 2020 10:37:20 -0600 Subject: [PATCH 2/2] adding whitespace to recommit --- .github/workflows/learn-github-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/learn-github-actions.yml b/.github/workflows/learn-github-actions.yml index 1652030..39f523d 100644 --- a/.github/workflows/learn-github-actions.yml +++ b/.github/workflows/learn-github-actions.yml @@ -8,4 +8,4 @@ jobs: - uses: actions/setup-node@v1 - run: npm install -g bats - run: bats -v - +