Skip to content

fix: release and ci action fixed #6

fix: release and ci action fixed

fix: release and ci action fixed #6

Workflow file for this run

name: ci
on:
push:
pull_request:
merge_group:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20, 'lts/*']
name: Build with node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4 # v4
- uses: actions/setup-node@v3 # v3
with:
cache: 'yarn'
node-version: ${{ matrix.node }}
- name: Install dependencies 📦
run: yarn install --immutable
- name: Run typecheck
run: yarn run typecheck
- name: Run build
run: yarn run build