Skip to content

convert to typescript #96

convert to typescript

convert to typescript #96

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: run tests and build
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 23
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 10
- run: pnpm install --frozen-lockfile
- run: pnpm ts-check
- run: pnpm lint
- run: pnpm test --maxWorkers=2 --maxConcurrent=2