Skip to content

Commit 533df09

Browse files
authored
Merge pull request #2 from alokreddy/addtests
Addtests
2 parents f00b130 + e3e73c9 commit 533df09

File tree

5 files changed

+3802
-1123
lines changed

5 files changed

+3802
-1123
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: ci
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
jobs:
8+
tests:
9+
name: Tests
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Check out code
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Node
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 22
20+
21+
- name: Install dependencies
22+
run: npm ci
23+
24+
- name: Run tests
25+
run: npm run test -- --coverage

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[Tests Status](https://github.com/alokreddy/learn-cicd-typescript-starter/actions/workflows/ci.yml/badge.svg)
2+
13
# learn-cicd-typescript-starter (Notely)
24

35
This repo contains the typescript starter code for the "Notely" application for the "Learn CICD" course on [Boot.dev](https://boot.dev).
@@ -22,3 +24,5 @@ npm run dev
2224
_This starts the server in non-database mode._ It will serve a simple webpage at `http://localhost:8080`.
2325

2426
You do _not_ need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course!
27+
28+
Alok's version of Boot.dev's Notely app.

0 commit comments

Comments
 (0)