Skip to content

Commit

Permalink
added the CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
arpitkuriyal authored and lcrojano committed Oct 19, 2024
1 parent 8fd13e3 commit 3ffeb21
Show file tree
Hide file tree
Showing 4 changed files with 5,461 additions and 1,547 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Name: CI for the jest and Cypress

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on:
ubuntu-lastest

steps:
- name: checkout
uses: actions/checkout@v3

- name: setup node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Install dependencies
run: npm install

- name: Run jest
run: npm run jest
Loading

0 comments on commit 3ffeb21

Please sign in to comment.