Skip to content

Commit

Permalink
Add merge pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jantoun-scottlogic committed May 21, 2024
1 parent 6957afc commit eefe2a5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: PR Workflow
on: pull_request

jobs:
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test

0 comments on commit eefe2a5

Please sign in to comment.