Skip to content

Release chartgpu-react 0.3.0 (ChartGPU 0.3.6 + TypeScript 7) #1

Release chartgpu-react 0.3.0 (ChartGPU 0.3.6 + TypeScript 7)

Release chartgpu-react 0.3.0 (ChartGPU 0.3.6 + TypeScript 7) #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
typecheck-and-test:
name: Typecheck & test
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Build
run: npm run build