From 9a54baa64d3e776eccea654ff31579ff046ccf40 Mon Sep 17 00:00:00 2001 From: jaisinha77777 Date: Fri, 10 Jul 2026 23:57:35 +0530 Subject: [PATCH] tests --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..ea9ca318e6 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: ci + +on: + pull_request: + branches: [main] + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v6 + + - name: Set up Node + uses: actions/setup-node@v5 + with: + node-version: 22 + + - name: Force Failure + run: (exit 1) \ No newline at end of file