Skip to content

fix: observe the WISH attribute for tower monsters (#76) #292

fix: observe the WISH attribute for tower monsters (#76)

fix: observe the WISH attribute for tower monsters (#76) #292

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source
# code across multiple Node.js versions, and lint the project.
name: Build & Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check code formatting
run: yarn run lint