Skip to content

Commit

Permalink
adding pr workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joshfischer1108 committed Jul 12, 2023
1 parent 5b75b84 commit 27b814a
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .github/workflows/build-every-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build Iridium - every pull request

on:
pull_request:
branches: [ "*" ]


env:

jobs:

build:

runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v3
- name: set up node 18
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: install node deps
run: npm ci
working-directory: ./iridium-angular-client
- name: lint angular clients
run: npm run lint
working-directory: ./iridium-angular-client
- name: build angular clients
run: npm run build-all
working-directory: ./iridium-angular-client




5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Iridium Angular Client Workspace
# Iridium Angular Admin UI Workspace

This repo holds two projects.

1. [The Admin UI for Iridium](./projects/iridium-ui)
2. [An Iridium client for use within Angular applications](./projects/ngx-iridium-client)

0 comments on commit 27b814a

Please sign in to comment.