Skip to content

feat: implement teleport between hotels - fix #35 #38

feat: implement teleport between hotels - fix #35

feat: implement teleport between hotels - fix #35 #38

Workflow file for this run

name: Prettier Check
on:
push:
branches: [master]
pull_request:
jobs:
prettier:
name: "Checking code style"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 20.x
- name: Install dependencies
run: npm install
- name: Run Prettier check
run: npm run prettier:check