Skip to content

ci: add Release Please for automated releases (#11) #62

ci: add Release Please for automated releases (#11)

ci: add Release Please for automated releases (#11) #62

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: pnpm
- name: Install Dependencies
id: pnpm-install
run: pnpm install --frozen-lockfile
- name: Check Format
id: format-check
run: pnpm run format:check
- name: Lint
id: lint
run: pnpm run lint
- name: Test
id: test
run: pnpm run ci-test