File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build and Test SearchAPI.io n8n node
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - ' *'
7
+ push :
8
+ branches :
9
+ - main
10
+
11
+ permissions :
12
+ contents : read
13
+
14
+ concurrency :
15
+ group : ${{ github.workflow }}-${{ github.ref }}
16
+ cancel-in-progress : true
17
+
18
+ jobs :
19
+ build :
20
+ runs-on : ubuntu-latest
21
+ env :
22
+ CI : true
23
+ steps :
24
+ - name : Checkout
25
+ uses : actions/checkout@v4
26
+
27
+ - uses : pnpm/action-setup@v3
28
+ name : Install pnpm
29
+ with :
30
+ run_install : false
31
+
32
+ - name : Install Node.js
33
+ uses : actions/setup-node@v4
34
+ with :
35
+ node-version-file : " package.json"
36
+ cache : pnpm
37
+ registry-url : https://registry.npmjs.org
38
+
39
+ - name : Install dependencies
40
+ run : pnpm install --frozen-lockfile
41
+
42
+ - name : Lint
43
+ run : pnpm lint
44
+
45
+ - name : Build
46
+ run : pnpm build
47
+
You can’t perform that action at this time.
0 commit comments