Skip to content

Feat: Player Rating Endpoints #31

Feat: Player Rating Endpoints

Feat: Player Rating Endpoints #31

Workflow file for this run

name: Play Tak API CI
on:
pull_request:
branches:
- main
- dev
jobs:
lint_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Lint code
run: npm run lint
- name: Run Unit tests
run: npm run test