Skip to content

Develop

Develop #106

Workflow file for this run

name: CI
on:
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js and Pnpm
uses: ./.github/actions/setup-node-and-pnpm
- name: Run Lint
run: pnpm lint
unit-test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js and Pnpm
uses: ./.github/actions/setup-node-and-pnpm
- name: Collect Workflow Telemetry
uses: catchpoint/workflow-telemetry-action@v2
- name: Run unit test
run: pnpm test
build-check:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js and Pnpm
uses: ./.github/actions/setup-node-and-pnpm
- name: Run Build
run: pnpm build