Skip to content

Update playing state vars #17

Update playing state vars

Update playing state vars #17

Workflow file for this run

name: Test
on: [push]
jobs:
test:
name: test
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: 🏗 Checkout
uses: actions/checkout@v3
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
cache: npm
- name: 🏗 Restore Cache
uses: actions/cache@v3
id: node-modules-cache
with:
path: ./node_modules
key: ${{ runner.os }}-node-modules-cache-${{ hashFiles('package-lock.json') }}
- name: 📦 Install
run: npm i
- name: ✅ Typecheck
run: npm run typecheck
- name: ✅ Test
run: npm run testFinal