diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..7d07ca7 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -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