File tree Expand file tree Collapse file tree 2 files changed +49
-0
lines changed Expand file tree Collapse file tree 2 files changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches :
4
+ - master
5
+
6
+ name : " CI Node"
7
+
8
+ jobs :
9
+ test :
10
+ name : Test
11
+
12
+ runs-on : ubuntu-latest
13
+
14
+ strategy :
15
+ matrix :
16
+ node-versions : [18]
17
+
18
+ steps :
19
+ - name : Cancel Previous Runs
20
+
21
+ with :
22
+ access_token : ${{ github.token }}
23
+ - name : Checkout
24
+ uses : actions/checkout@v2
25
+
26
+ - uses : actions/setup-node@v3
27
+ with :
28
+ node-version : ${{ matrix.node-versions }}
29
+
30
+ - name : NPM Install
31
+ working-directory : ./ui
32
+ run : npm install
33
+
34
+ - name : Lint, build/export
35
+ working-directory : ./ui
36
+ run : |
37
+ npm run lint
38
+ npm run export
39
+
40
+ - name : Create Pull Request
41
+ uses : peter-evans/create-pull-request@v4
42
+
43
+
44
+
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ npm install
8
8
npm run dev
9
9
```
10
10
11
+ ** Open in Browser** http://localhost:3000?api=http://localhost:3000/sample.json
12
+
13
+
14
+ ### Developing with Laravel
15
+
11
16
#### Step 1
12
17
13
18
** Optional** Enable CORS on Laravel to allow localhost:3000
You can’t perform that action at this time.
0 commit comments