Skip to content

Fix token

Fix token #33

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
default:
strategy:
matrix:
node: [18, 20]
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 30
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Type checking
run: pnpm type-check