diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml new file mode 100644 index 000000000..7c09188c4 --- /dev/null +++ b/.github/workflows/angular.yml @@ -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 \ No newline at end of file