Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: PR Checks
on:
pull_request:
types:
- opened
jobs:
pr-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 16.20.2
- name: Install NPM Packages
run: npm install --also=dev
- name: Run ESlint
run: npm run lint
- name: Run Unit Tests
run: npm run test
- name: Build Project
run: npm run build:prod