Skip to content

suppress the typescript errors to warn #21

suppress the typescript errors to warn

suppress the typescript errors to warn #21

Workflow file for this run

name: PR Workflow
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Enable node
uses: actions/setup-node@master
with:
node-version: 16.x
- name: Cache .pnpm-store
uses: actions/cache@v1
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
- name: Install pnpm
run: |
npm i -g pnpm@8
pnpm set verify-store-integrity false
- name: pnpm install
run: |
pnpm install --frozen-lockfile
- name: Build packages
run: pnpm run build-tsc
- name: Lint types and code
run: pnpm run lint