Skip to content

CI/CD Pipeline implemented #5

CI/CD Pipeline implemented

CI/CD Pipeline implemented #5

Workflow file for this run

name: Run tests
on:
pull_request:
jobs:
run_tests:
runs-on: ubuntu-latest
container:
image: node:18-alpine3.17
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Jest
run: npm i [email protected]
- name: Run tests
run: npm test