Added Severity Label validation to All Vulns table (CRASM-822) #754
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Docs | |
on: | |
push: | |
branches: | |
- develop | |
paths: | |
- docs/** | |
- backend/** | |
- .github/workflows/docs.yml | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- docs/** | |
- backend/** | |
- .github/workflows/docs.yml | |
defaults: | |
run: | |
working-directory: ./docs | |
jobs: | |
deploy: | |
name: Build docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Restore npm cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: ${{ runner.os }}-node- | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y libvips-dev glib2.0-dev | |
- run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build |