aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/dev_builds.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/dev_builds.yml b/.github/workflows/dev_builds.yml
new file mode 100644
index 0000000..73f4b71
--- /dev/null
+++ b/.github/workflows/dev_builds.yml
@@ -0,0 +1,27 @@
+name: Development builds CI
+on:
+ push:
+ pull_request:
+ types: [opened, reopened]
+
+jobs:
+ build:
+ name: "Create development builds"
+ runs-on: "windows-latest"
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+ - name: Setup Node environment
+ uses: actions/setup-node@v3
+ with:
+ node-version: 16
+ - name: Install dependencies
+ run: npm ci
+ - name: Create builds
+ run: npm run build
+ - name: Archive production artifacts
+ uses: actions/upload-artifact@v3
+ with:
+ name: dist
+ path: |
+ dist \ No newline at end of file