diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml new file mode 100644 index 0000000..1423c8d --- /dev/null +++ b/.github/workflows/angular.yml @@ -0,0 +1,27 @@ +name: Angular CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x] + + steps: + - uses: actions/checkout@v2 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + + - name: Install Dependencies + run: | + npm ci + npm install -g @angular/cli + + - name: Build + run: ng build --configuration production