Skip to content

feat: add new medal icon and update item definitions #3

feat: add new medal icon and update item definitions

feat: add new medal icon and update item definitions #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
verify:
name: Typecheck and build
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Run typecheck
run: npm run typecheck
- name: Run build
run: npm run build