feat: UI Improvements and Updates #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |