We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc7dab5 commit b8f165cCopy full SHA for b8f165c
2 files changed
.github/workflows/deno.yml
.github/workflows/nodejs.yml
@@ -0,0 +1,39 @@
1
+name: Node.js CI
2
+
3
+on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ lint:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
20
+ - name: Setup Node.js
21
+ uses: actions/setup-node@v4
22
+ with:
23
+ node-version: "20"
24
+ cache: "npm"
25
+ cache-dependency-path: |
26
+ backend/package-lock.json
27
+ frontend/package-lock.json
28
29
+ - name: Install backend deps
30
+ working-directory: backend
31
+ run: npm ci
32
33
+ - name: Install frontend deps
34
+ working-directory: frontend
35
36
37
+ - name: Build frontend
38
39
+ run: npm run build
0 commit comments