Skip to content

Adding e2e step to PRs #10

Adding e2e step to PRs

Adding e2e step to PRs #10

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test