Skip to content

feat(gameMode): add modescreen, add gameModeCarousel (#303) #313

feat(gameMode): add modescreen, add gameModeCarousel (#303)

feat(gameMode): add modescreen, add gameModeCarousel (#303) #313

Workflow file for this run

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 }}