From 33c9a56528843b639a8467a33aef7e026653391d Mon Sep 17 00:00:00 2001 From: nimratcoderabbit Date: Mon, 14 Jul 2025 13:30:53 -0400 Subject: [PATCH] Actionlint showcase --- .coderabbit.yml | 2 ++ .github/workflows/test.yml | 27 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .coderabbit.yml create mode 100644 .github/workflows/test.yml diff --git a/.coderabbit.yml b/.coderabbit.yml new file mode 100644 index 0000000..dcf8c91 --- /dev/null +++ b/.coderabbit.yml @@ -0,0 +1,2 @@ +reviews: + path_filters: ["**/*.yml","**/*.yaml"] diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..97bcf8f --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,27 @@ +name: CI + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: 16 + + - name: Install deps + run: npm install + + - name: Broken Step + run: | + echo "Hello + npm run test +