Skip to content

feat(game): added game and setup ci/cd workflows #1

feat(game): added game and setup ci/cd workflows

feat(game): added game and setup ci/cd workflows #1

Workflow file for this run

name: Prettier Code Formatter
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Run Prettier check
run: npm run format:check