We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 744869f commit f992a15Copy full SHA for f992a15
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,31 @@
1
+name: Ario Gateway Explorer 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
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v3
17
18
+ - name: Set up Node.js
19
+ uses: actions/setup-node@v3
20
+ with:
21
+ node-version: '20'
22
23
+ - name: Install dependencies
24
+ run: npm install
25
26
+ # Uncomment the following lines when you add tests
27
+ # - name: Run tests
28
+ # run: npm test
29
30
+ - name: Build project
31
+ run: npm run build
0 commit comments