Skip to content

Commit

Permalink
Merge pull request #1034 from ORCID/add-angular-test-ci-workflow
Browse files Browse the repository at this point in the history
Create angular.yml
  • Loading branch information
bobcaprice authored Sep 5, 2023
2 parents 7033975 + efa9ab7 commit efc793e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/angular.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Angular CI
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Install dependencies and run tests
working-directory: ui
run: |
npm i
npm test

0 comments on commit efc793e

Please sign in to comment.