Files
dc/.gitea/workflows/build.yaml
T
Mihajlo Medjedovic a9ddf7f7dd
Build / Build-and-ng-test (pull_request) Successful in 1m23s
chore: removing development branch JOBS, moving test jobs to the release pipeline
2023-10-13 11:24:42 +02:00

25 lines
538 B
YAML

name: Build
run-name: Running Lint Check and Licence checker on Pull Request
on: [pull_request]
jobs:
Build-and-ng-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Write .npmrc file
run: echo "$NPMRC" > client/.npmrc
shell: bash
env:
NPMRC: ${{ secrets.NPMRC}}
- run: npm run lint:check
- run: |
cd client
npm ci
npm run license-checker