Skip to content

chore: release v0.2.0 #6

chore: release v0.2.0

chore: release v0.2.0 #6

Workflow file for this run

name: Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
jobs:
lint_test:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Install Node.js
uses: actions/setup-node@v4
with:
cache: pnpm
node-version: 18
- name: Install dependencies
run: pnpm install
- name: Generates docs TypeScript types
run: pnpm astro sync
working-directory: docs
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test