Skip to content

chore: rm assetlinks #24

chore: rm assetlinks

chore: rm assetlinks #24

Workflow file for this run

name: Typecheck
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
typecheck:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.1
with:
version: 8.10.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Generate declarations
run: pnpm run -r build-declaration
- name: Typecheck
run: pnpm run -r typecheck