From 7c9686282c37e5f091539c955666364b3e3cb3e9 Mon Sep 17 00:00:00 2001 From: Alystrasz Date: Sun, 7 Aug 2022 00:15:39 +0200 Subject: build: add initial CI configuration --- .github/workflows/dev_builds.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/dev_builds.yml (limited to '.github/workflows') 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 -- cgit v1.2.3