From 3cf538d75d704b7910c770369702624a1210cdb3 Mon Sep 17 00:00:00 2001 From: Dar Malovani Date: Thu, 1 Aug 2024 13:12:05 +0000 Subject: [PATCH 1/2] ci-cd file added --- .github/ci-cd.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/ci-cd.yml diff --git a/.github/ci-cd.yml b/.github/ci-cd.yml new file mode 100644 index 0000000..489213b --- /dev/null +++ b/.github/ci-cd.yml @@ -0,0 +1,17 @@ +name: CI/CD Pipeline + +on: [pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: '18' + - name: Install dependencies + run: yarn install + - name: Run tests + run: yarn test \ No newline at end of file From 5afc9bc9ead072a3bd09cf89c65b147bf8b1e215 Mon Sep 17 00:00:00 2001 From: Dar Malovani Date: Thu, 1 Aug 2024 13:20:48 +0000 Subject: [PATCH 2/2] another try --- .github/{ => workflows}/ci-cd.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{ => workflows}/ci-cd.yml (100%) diff --git a/.github/ci-cd.yml b/.github/workflows/ci-cd.yml similarity index 100% rename from .github/ci-cd.yml rename to .github/workflows/ci-cd.yml