diff --git a/.github/workflows/conceptbe-fe-ci b/.github/workflows/conceptbe-fe-ci new file mode 100644 index 00000000..5e1b8870 --- /dev/null +++ b/.github/workflows/conceptbe-fe-ci @@ -0,0 +1,19 @@ +name: conceptbe-fe-ci + +on: + pull_request: + branches: [develop] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout source code. + uses: actions/checkout@v3 + + - name: Install dependencies + run: npm install + + - name: Generate build + run: npm run build