Skip to content

Commit

Permalink
Issue #136 Add ES Module exports
Browse files Browse the repository at this point in the history
- Add pull-request workflow
  • Loading branch information
kernwig committed Feb 1, 2025
1 parent b83c56e commit 4bf1760
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4bf1760

Please sign in to comment.