Skip to content

Commit 11b320e

Browse files
Initial Node server
0 parents  commit 11b320e

File tree

6 files changed

+4817
-0
lines changed

6 files changed

+4817
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Node.js CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: ⬇️ Checkout code
15+
uses: actions/checkout@v3
16+
17+
- name: 🟢 Set up Node.js
18+
uses: actions/setup-node@v3
19+
with:
20+
node-version: '18'
21+
22+
- name: 📦 Install dependencies
23+
run: npm install
24+
25+
- name: 🧪 Run tests
26+
run: npm test
27+
28+
- name: 🚀 Build
29+
run: npm run build

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/node_modules
2+
3+
/.env
4+
/.env.local

0 commit comments

Comments
 (0)