Skip to content

Remove unused import and commented code in PlayerActions.tsx #553

Remove unused import and commented code in PlayerActions.tsx

Remove unused import and commented code in PlayerActions.tsx #553

Workflow file for this run

name: Node.js CI
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set Node.js version and Install Dependencies
run: |
cd code/backend
npm ci
shell: bash
env:
NODE_VERSION: ${{ matrix.node-version }}
- name: Build and Run
run: |
npm run build --if-present
npx jest
working-directory: code/backend