chore(deps): bump eas-cli from 7.3.0 to 13.1.1 #334
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: Snyk Security Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
security: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Install dependencies | |
run: npm install | |
- name: Run Snyk to check for vulnerabilities | |
id: snyk | |
uses: snyk/actions/node@master | |
continue-on-error: true # Continue to comment even if vulnerabilities are found | |
with: | |
args: --json-file-output=snyk-results.json | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} |