Skip to content

Create ci.yml

Create ci.yml #1

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: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Check types
run: pnpm typecheck
- name: Linting
run: pnpm lint