impl: CI
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Manish 2023-08-29 10:34:04 +10:00
parent 5f6b6e10fc
commit c9a7a9efaf
3 changed files with 11 additions and 1 deletions

8
.woodpecker.yml Normal file
View File

@ -0,0 +1,8 @@
---
steps:
tests:
image: node:lts
pull: true
commands:
- npm install
- npm run test

View File

@ -1,3 +1,5 @@
# Metric-Imperial Converter # Metric-Imperial Converter
[![status-badge](https://ci.radii.page/api/badges/126/status.svg)](https://ci.radii.page/repos/126)
This is the boilerplate for the Metric-Imperial Converter project. Instructions for building your project can be found at https://www.freecodecamp.org/learn/quality-assurance/quality-assurance-projects/metric-imperial-converter This is the boilerplate for the Metric-Imperial Converter project. Instructions for building your project can be found at https://www.freecodecamp.org/learn/quality-assurance/quality-assurance-projects/metric-imperial-converter

View File

@ -5,7 +5,7 @@
"main": "server.js", "main": "server.js",
"scripts": { "scripts": {
"start": "node server.js", "start": "node server.js",
"test": "mocha ./tests/ --ui tdd" "test": "mocha ./tests/ --ui tdd --exit --color"
}, },
"dependencies": { "dependencies": {
"body-parser": "^1.19.0", "body-parser": "^1.19.0",