Skip to content

feat: use github actions & improve type hinting for slick instance #1

feat: use github actions & improve type hinting for slick instance

feat: use github actions & improve type hinting for slick instance #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '22' # 또는 프로젝트에서 사용하는 Node.js 버전
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test