Skip to content

Commit ab7ddf8

Browse files
committed
ci: Added PR workflow
1 parent 349a407 commit ab7ddf8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build pull request
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: actions/setup-node@v3
12+
with:
13+
node-version: 18
14+
cache: "npm"
15+
- run: npm ci
16+
- run: npm run build
17+
- run: mv dist/index.html remote-bandui.html
18+
- name: Upload Artifacts
19+
uses: actions/upload-artifact@v4
20+
with:
21+
name: dist
22+
path: |
23+
remote-bandui.html
24+
Mother Project.RPP
25+
LICENSE

0 commit comments

Comments
 (0)