We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9569420 commit 3bf553bCopy full SHA for 3bf553b
.github/workflows/deploy.yml
@@ -0,0 +1,39 @@
1
+name: Node.js CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
14
+ runs-on: ubuntu-latest
15
16
+ strategy:
17
+ matrix:
18
+ node-version: [20.x]
19
20
+ steps:
21
+ - name: Checkout repository
22
+ uses: actions/checkout@v3
23
24
+ - name: Set up Node.js
25
+ uses: actions/setup-node@v3
26
+ with:
27
+ node-version: ${{ matrix.node-version }}
28
29
+ - name: Install dependencies
30
+ run: npm install
31
32
+ - name: Install ffmpeg
33
+ run: |
34
+ sudo apt-get update
35
+ sudo apt-get install ffmpeg
36
37
+ - name: Start application
38
+ run: npm start
39
0 commit comments