From 6ae4aaf7d56ba808f1196c029c09c7337322e6e6 Mon Sep 17 00:00:00 2001 From: b9 Date: Tue, 12 Mar 2024 20:15:40 -0700 Subject: [PATCH] Testing CI --- .github/workflows/learn-github-actions.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/learn-github-actions.yaml diff --git a/.github/workflows/learn-github-actions.yaml b/.github/workflows/learn-github-actions.yaml new file mode 100644 index 0000000..b59a7a1 --- /dev/null +++ b/.github/workflows/learn-github-actions.yaml @@ -0,0 +1,13 @@ +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@v4 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v