We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36d2a81 commit efdc505Copy full SHA for efdc505
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,32 @@
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
+ runs-on: ubuntu-latest
14
15
+ strategy:
16
+ matrix:
17
+ node-version: [20.x]
18
19
+ steps:
20
+ - name: Checkout repository
21
+ uses: actions/checkout@v3
22
23
+ - name: Set up Node.js
24
+ uses: actions/setup-node@v3
25
+ with:
26
+ node-version: ${{ matrix.node-version }}
27
28
+ - name: Install dependencies
29
+ run: npm install
30
31
+ - name: Start application
32
+ run: npm start
0 commit comments