Skip to content

Commit

Permalink
ci: Added PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nikarh committed Mar 16, 2024
1 parent 349a407 commit ab7ddf8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build pull request

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm run build
- run: mv dist/index.html remote-bandui.html
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: |
remote-bandui.html
Mother Project.RPP
LICENSE

0 comments on commit ab7ddf8

Please sign in to comment.