Skip to content

Updated package.json #5

Updated package.json

Updated package.json #5

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Check types
run: pnpm typecheck
- name: Linting
run: pnpm lint