From 8cb4fe4852e83d57435bcf0595058a66303afb7e Mon Sep 17 00:00:00 2001 From: olayway Date: Sun, 15 May 2022 00:07:41 +0200 Subject: [PATCH] gh actions test --- .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..97ea16a --- /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@v3 + - uses: actions/setup-node@v3 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v