We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1535e67 commit 72baf59Copy full SHA for 72baf59
1 file changed
github/workflows/nodejs.yml
@@ -0,0 +1,23 @@
1
+name: NodeJS CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - uses: actions/checkout@v4
13
14
+ - name: Setup Node
15
+ uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 18
18
19
+ - name: Install dependencies
20
+ run: npm install
21
22
+ - name: Build
23
+ run: npm run build
0 commit comments