Skip to content

fix: Severity filter not working in case of empty ecosystem value (#188) #343

fix: Severity filter not working in case of empty ecosystem value (#188)

fix: Severity filter not working in case of empty ecosystem value (#188) #343

Workflow file for this run

name: 'Continuous Deployment'
on:
push:
branches:
- main
jobs:
cd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Get node version
id: node
run: echo "::set-output name=version::$(node -v)"
- name: Get node_modules cache
uses: actions/cache@v4
id: node_modules
with:
path: |
**/node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}-${{ steps.node.outputs.version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn all
- name: Release
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}