dc/.gitea/workflows/build.yaml

21 lines
416 B
YAML
Raw Normal View History

2023-07-13 11:44:05 +00:00
name: Build
2023-07-31 11:13:00 +00:00
run-name: Running Lint Check
2023-07-13 11:44:05 +00:00
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}}
2023-07-31 11:13:00 +00:00
- run: npm run lint:check