Skip to content

Commit

Permalink
Create build-angular
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavoquinalha authored Jul 5, 2024
1 parent d7dae4b commit ac823ef
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-angular
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build Angular App

on:
push:
branches: [ main ]
workflow_dispatch:

jobs:
build-angular:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node JS
uses: actions/setup-node@v4
with:
node-version: 18.x

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifact
path: dist



0 comments on commit ac823ef

Please sign in to comment.