From 6a7500ba3dbd71a6ac879313d0250b8a16de175b Mon Sep 17 00:00:00 2001 From: gowridurgad <159780674+gowridurgad@users.noreply.github.com> Date: Wed, 19 Jun 2024 12:01:19 +0530 Subject: [PATCH] Create testing.yml --- .github/workflows/testing.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/testing.yml diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml new file mode 100644 index 00000000..7908428e --- /dev/null +++ b/.github/workflows/testing.yml @@ -0,0 +1,19 @@ +name: Testing +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + + - name: Install dependencies + run: npm install