diff options
author | Alystrasz <contact@remyraes.com> | 2022-08-07 00:15:39 +0200 |
---|---|---|
committer | Alystrasz <contact@remyraes.com> | 2022-08-07 00:15:39 +0200 |
commit | 7c9686282c37e5f091539c955666364b3e3cb3e9 (patch) | |
tree | 8bd9daa8b7d22c2016e9a34b18166dfc858b64da /.github | |
parent | bea0f483d7bbfbd0d8311ff69c1f04d4798a4bbb (diff) | |
download | Viper-7c9686282c37e5f091539c955666364b3e3cb3e9.tar.gz Viper-7c9686282c37e5f091539c955666364b3e3cb3e9.zip |
build: add initial CI configuration
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dev_builds.yml | 27 |
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 |