A hackable template for creating small and fast browser games.
1name: CI
2on: pull_request
3jobs:
4 build:
5 runs-on: ubuntu-latest
6 steps:
7 - name: 🛎️ Check out
8 uses: actions/checkout@v2
9 - name: 🧮 Use Node.js
10 uses: actions/setup-node@v1
11 with:
12 node-version: 16.x
13 - name: 📦 Install dependencies
14 run: npm ci
15 - name: 🧽 Lint
16 run: npm run lint
17 - name: 🛠️ Type-check
18 run: npm run ts:check