Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

lint: specify names to import #105

lint: specify names to import

lint: specify names to import #105

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
node: ["16", "18"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- run: pnpm install
- run: pnpm run lint
- run: pnpm run compile
- run: pnpm test