Skip to content

fix: rename workflow from 'Run Tests' to 'CI' for clarity #13

fix: rename workflow from 'Run Tests' to 'CI' for clarity

fix: rename workflow from 'Run Tests' to 'CI' for clarity #13

Workflow file for this run

name: CI
on:
push:
branches: [main, staging]
pull_request:
branches: [main, staging]
jobs:
test:
name: Run Jest Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test