From 1dfe3790d38b3e72640db8c7627f7ee9fd13464e Mon Sep 17 00:00:00 2001 From: Dhruv Mehndhiratta Date: Thu, 30 Jul 2026 12:56:15 -0400 Subject: [PATCH] build check --- .github/workflows/pr-checks.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/pr-checks.yml diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml new file mode 100644 index 0000000..0742994 --- /dev/null +++ b/.github/workflows/pr-checks.yml @@ -0,0 +1,26 @@ +name: PR Checks + +on: + pull_request: + branches: [main] + +permissions: + contents: read + +concurrency: + group: pr-checks-${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - run: npm ci + - run: npm run build