Add PE and CF API keys to env.yml #2521
Workflow file for this run
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: | |
- master | |
paths: | |
- 'docs/**' | |
- 'backend/**' | |
- '.github/workflows/docs.yml' | |
pull_request: | |
branches: | |
- master | |
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 | |
# - name: Deploy to GitHub Pages | |
# if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
# uses: crazy-max/[email protected] | |
# with: | |
# keep_history: false | |
# target_branch: gh-pages | |
# build_dir: docs/public | |
# fqdn: docs.crossfeed.cyber.dhs.gov | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |