Skip to content

Commit

Permalink
Setup workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
abarmawi committed Jan 3, 2024
1 parent 94c001b commit 6eed7cc
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run npm on PR

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
run-npm:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: "18"

- name: Install dependencies
run: npm install

- name: Run data validation
run: npm run validate

0 comments on commit 6eed7cc

Please sign in to comment.