Skip to content
This repository was archived by the owner on Feb 19, 2026. It is now read-only.

Add warning about incomplete project status #6

Add warning about incomplete project status

Add warning about incomplete project status #6

Workflow file for this run

name: Test Code
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '21'
- name: Install dependencies
run: npm ci
- name: Lint code (ESLint)
run: npm run lint
- name: Test code (Jest)
run: npm run test