From 2d072e9d578f8827547171094a81dc3972375670 Mon Sep 17 00:00:00 2001 From: B161851 <36770058+B161851@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:06:43 +0530 Subject: [PATCH] Create main.yml creating an example file --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..19f857a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +# defining the name + +name: learn-github-actions + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@4 + - uses: actions/setup-node@3 + with: + node-version: '14' + - run: npm install -g bats + - run: bats -v + + +