Skip to content

feat: function component with defaultProps (#57) #38

feat: function component with defaultProps (#57)

feat: function component with defaultProps (#57) #38

Workflow file for this run

name: Verify
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install Dependencies
run: yarn install --immutable
- name: Run Unit Tests + Coverage
run: yarn test:cov
- name: Build
run: yarn build
- name: Upload Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODE_COV }}