Skip to content

feat: Release v0.4.0 with Repeat component #10

feat: Release v0.4.0 with Repeat component

feat: Release v0.4.0 with Repeat component #10

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['20.x']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v4
# with:
# version: 7
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm run type-check && pnpm run build