Skip to content

Merge pull request #244 from AttorneyOnline/dependabot/github_actions… #429

Merge pull request #244 from AttorneyOnline/dependabot/github_actions…

Merge pull request #244 from AttorneyOnline/dependabot/github_actions… #429

Workflow file for this run

name: Test CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 14
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test