Skip to content

fix(game): add bonus game on clear #87

fix(game): add bonus game on clear

fix(game): add bonus game on clear #87

Workflow file for this run

name: ci
on:
workflow_call:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Check
run: |
npm run lint
npm run check
- name: Test
run: npm test