From b3865c1dddfac63c896b635e88e1f4fff003064b Mon Sep 17 00:00:00 2001 From: Mateusz Srebrny Date: Wed, 31 Jan 2024 12:33:58 +0100 Subject: [PATCH] first example workflow --- .github/workflows/learn-github-actions.yml | 14 ++++++++++++++ 1 file changed, 14 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..36a3eb5 --- /dev/null +++ b/.github/workflows/learn-github-actions.yml @@ -0,0 +1,14 @@ +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@v3 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v +