From 4bf1760d0c9c6b36ff0e4af8cac767d8cfb4a15b Mon Sep 17 00:00:00 2001 From: Adam Fanello Date: Fri, 31 Jan 2025 16:49:18 -0800 Subject: [PATCH] Issue #136 Add ES Module exports - Add pull-request workflow --- .github/workflows/pull-request.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml new file mode 100644 index 0000000..9f834fc --- /dev/null +++ b/.github/workflows/pull-request.yml @@ -0,0 +1,21 @@ +name: pull-request + +on: + pull_request: + branches: + - main + +jobs: + analyze: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version-file: "package.json" + - name: Install dependencies + run: npm ci + - name: Run Analysis + run: npm run analyze