Skip to content

feat: add base32 encode #37

feat: add base32 encode

feat: add base32 encode #37

Workflow file for this run

name: CI
on:
pull_request:
branches: main
push:
branches: main
merge_group: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9.9.0
- uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'
cache: pnpm
- name: Install
run: pnpm install
- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Typecheck
run: pnpm typecheck