Skip to content

add the USSS (United States Secret Service) stats #24

add the USSS (United States Secret Service) stats

add the USSS (United States Secret Service) stats #24

Workflow file for this run

name: CI Pipeline for Fed Graph
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint code
run: npm run lint
continue-on-error: true
- name: Run tests
run: npm test -- --passWithNoTests
- name: Build app
run: npm run build
env:
CI: true