aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/dev_builds.yml
blob: bd68d1a61738587325ece8ab6226c8eb9e1e58ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 install --force
      - name: Create builds
        run: npm run build
      - name: Archive production artifacts
        uses: actions/upload-artifact@v3
        with:
          name: dist
          path: |
            dist