diff --git a/.gittea/workflows/angular-build.yml b/.gittea/workflows/angular-build.yml new file mode 100644 index 0000000..2363710 --- /dev/null +++ b/.gittea/workflows/angular-build.yml @@ -0,0 +1,26 @@ +name: Angular Build + +on: + push: + branches: + - dev + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Build Angular + run: npm run build