Skip to content

Commit e59050e

Browse files
(v2.1) releaser
1 parent 1ba9473 commit e59050e

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

.github/workflows/releaser.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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+
uses: styfle/[email protected]
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+

ui/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ npm install
88
npm run dev
99
```
1010

11+
**Open in Browser** http://localhost:3000?api=http://localhost:3000/sample.json
12+
13+
14+
### Developing with Laravel
15+
1116
#### Step 1
1217

1318
**Optional** Enable CORS on Laravel to allow localhost:3000

0 commit comments

Comments
 (0)