Skip to content

Merge pull request #13 from the-markup/edits #29

Merge pull request #13 from the-markup/edits

Merge pull request #13 from the-markup/edits #29

Workflow file for this run

name: Run Tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run Jest tests
run: npm run test