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 142a5f5 commit cd539b7Copy full SHA for cd539b7
.github/workflows/build.yml
@@ -0,0 +1,30 @@
1
+name: "Build and Test"
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
18
+ - name: Set up Node.js
19
+ uses: actions/setup-node@v2
20
+ with:
21
+ node-version: '20'
22
23
+ - name: Install dependencies
24
+ run: npm install
25
26
+ - name: Build code
27
+ run: npm run compile
28
29
+ # - name: Run linter
30
+ # run: npm run lint
0 commit comments