From 12f505c6244b1fbc1ccaa832d764b0405ccc0193 Mon Sep 17 00:00:00 2001 From: LiuJingZ <109776820+LiuJingYAyA@users.noreply.github.com> Date: Tue, 14 Nov 2023 17:02:25 +0800 Subject: [PATCH] Create learn-github-actions.yml --- .github/workflows/learn-github-actions.yml | 13 +++++++++++++ 1 file changed, 13 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..8fc224c --- /dev/null +++ b/.github/workflows/learn-github-actions.yml @@ -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@v3 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v