Skip to content

Commit

Permalink
[ci]: Add workflow to check if angular is building
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagohm committed Oct 23, 2023
1 parent d8e9143 commit 387ddfd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/angular.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Angular

on:
pull_request:
workflow_dispatch:

jobs:
test:
name: Build
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install Dependencies
run: npm i

- name: Build
run: npm run build:prod

0 comments on commit 387ddfd

Please sign in to comment.