Skip to content
This repository was archived by the owner on Nov 12, 2024. It is now read-only.

feat: configure package details #161

feat: configure package details

feat: configure package details #161

Workflow file for this run

name: CI
on:
pull_request:
merge_group:
types: [checks_requested]
workflow_call:
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Check exports
run: npm run exports:check
- name: Check types
run: npm run types:check
- name: Check formatting
run: npm run format:check