Skip to content

Merge pull request #95 from hunghg255/fix-table #181

Merge pull request #95 from hunghg255/fix-table

Merge pull request #95 from hunghg255/fix-table #181

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install
run: pnpm install
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm type-check
- name: Build lib
run: pnpm build:lib