Dependencies: Add helmet #12
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
--- | |
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Code Analysis | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
environment: build | |
# OS List | |
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- uses: actions/[email protected] | |
# https://github.com/marketplace/actions/setup-node-js-environment | |
- name: Use Node.js 20.x | |
uses: actions/[email protected] | |
with: | |
node-version: 20.x | |
#cache: 'npm' | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm run unit | |
# https://github.com/marketplace/actions/codecov | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
# https://github.com/marketplace/actions/official-fossa-action | |
- name: Upload to FOSSA | |
uses: fossas/[email protected] | |
with: | |
api-key: ${{ secrets.FOSSA_API_KEY }} |