Skip to content

refactor: Primitive Propertiesの取得処理をprimitive-props.tsに移動 #756

refactor: Primitive Propertiesの取得処理をprimitive-props.tsに移動

refactor: Primitive Propertiesの取得処理をprimitive-props.tsに移動 #756

Workflow file for this run

name: Test and coverage
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.7.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
env:
CI: true
- name: Upload Coverage
uses: codecov/codecov-action@v3