From 5216c562dc7244441d90b2d4ce0176915e68f148 Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Mon, 19 Jul 2021 20:21:24 -0400 Subject: [PATCH] Create auto-github-actions.yml --- .github/workflows/auto-github-actions.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/auto-github-actions.yml diff --git a/.github/workflows/auto-github-actions.yml b/.github/workflows/auto-github-actions.yml new file mode 100644 index 0000000..1f890e1 --- /dev/null +++ b/.github/workflows/auto-github-actions.yml @@ -0,0 +1,12 @@ +name: auto-github-actions +on: [push] +jobs: + check-bats-version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v